Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1389)

Unified Diff: third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.cpp

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.cpp
diff --git a/third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.cpp b/third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.cpp
index e4a79b63ae2317ba02a51d519176fcf6f22282c4..ae0b3aeee4b492ca6ed2f9594d960b20519b188f 100644
--- a/third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.cpp
+++ b/third_party/WebKit/Source/modules/device_orientation/DeviceMotionController.cpp
@@ -90,7 +90,7 @@ PassRefPtrWillBeRawPtr<Event> DeviceMotionController::lastEvent() const
bool DeviceMotionController::isNullEvent(Event* event) const
{
DeviceMotionEvent* motionEvent = toDeviceMotionEvent(event);
- return !motionEvent->deviceMotionData()->canProvideEventData();
+ return !motionEvent->getDeviceMotionData()->canProvideEventData();
}
const AtomicString& DeviceMotionController::eventTypeName() const

Powered by Google App Engine
This is Rietveld 408576698