summaryrefslogtreecommitdiffstats
path: root/chromium/third_party/WebKit/Source/core/events/NavigatorEvents.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/core/events/NavigatorEvents.cpp')
-rw-r--r--chromium/third_party/WebKit/Source/core/events/NavigatorEvents.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/WebKit/Source/core/events/NavigatorEvents.cpp b/chromium/third_party/WebKit/Source/core/events/NavigatorEvents.cpp
index a4285c21ef8..526cdc8ca65 100644
--- a/chromium/third_party/WebKit/Source/core/events/NavigatorEvents.cpp
+++ b/chromium/third_party/WebKit/Source/core/events/NavigatorEvents.cpp
@@ -31,15 +31,15 @@
#include "config.h"
#include "core/events/NavigatorEvents.h"
-#include "core/frame/Frame.h"
+#include "core/frame/LocalFrame.h"
#include "core/frame/Navigator.h"
#include "core/frame/Settings.h"
namespace WebCore {
-long NavigatorEvents::maxTouchPoints(Navigator* navigator)
+long NavigatorEvents::maxTouchPoints(Navigator& navigator)
{
- Frame* frame = navigator->frame();
+ LocalFrame* frame = navigator.frame();
if (!frame)
return 0;
if (Settings* settings = frame->settings())