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

Unified Diff: Source/modules/device_orientation/DeviceOrientationData.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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: Source/modules/device_orientation/DeviceOrientationData.cpp
diff --git a/Source/modules/device_orientation/DeviceOrientationData.cpp b/Source/modules/device_orientation/DeviceOrientationData.cpp
index c86d60df92fbb72d52a16b950b1aec2b94a9a19a..8c6aeb2bf426cd37938f0ed1100fae97754f2925 100644
--- a/Source/modules/device_orientation/DeviceOrientationData.cpp
+++ b/Source/modules/device_orientation/DeviceOrientationData.cpp
@@ -39,7 +39,7 @@ PassRefPtr<DeviceOrientationData> DeviceOrientationData::create(bool canProvideA
return adoptRef(new DeviceOrientationData(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma, canProvideAbsolute, absolute));
}
-PassRefPtr<DeviceOrientationData> DeviceOrientationData::create(const WebKit::WebDeviceOrientationData& data)
+PassRefPtr<DeviceOrientationData> DeviceOrientationData::create(const blink::WebDeviceOrientationData& data)
{
return DeviceOrientationData::create(data.hasAlpha, data.alpha, data.hasBeta, data.beta, data.hasGamma, data.gamma, data.hasAbsolute, data.absolute);
}

Powered by Google App Engine
This is Rietveld 408576698