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

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

Issue 2008183002: DevTools: generate frontend and backend interfaces under domains. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comment addressed Created 4 years, 7 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/DeviceOrientationInspectorAgent.cpp
diff --git a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationInspectorAgent.cpp b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationInspectorAgent.cpp
index 6d0bda75a764ef4a0eb02e25e4f155c82ddf5983..db796df93e4cfb1ae98181df926ef3caedda5a1c 100644
--- a/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationInspectorAgent.cpp
+++ b/third_party/WebKit/Source/modules/device_orientation/DeviceOrientationInspectorAgent.cpp
@@ -30,7 +30,7 @@ DeviceOrientationInspectorAgent::~DeviceOrientationInspectorAgent()
}
DeviceOrientationInspectorAgent::DeviceOrientationInspectorAgent(Page& page)
- : InspectorBaseAgent<DeviceOrientationInspectorAgent, protocol::Frontend::DeviceOrientation>("DeviceOrientation")
+ : InspectorBaseAgent<DeviceOrientationInspectorAgent, protocol::DeviceOrientation::Frontend>("DeviceOrientation")
, m_page(&page)
{
}
@@ -38,7 +38,7 @@ DeviceOrientationInspectorAgent::DeviceOrientationInspectorAgent(Page& page)
DEFINE_TRACE(DeviceOrientationInspectorAgent)
{
visitor->trace(m_page);
- InspectorBaseAgent<DeviceOrientationInspectorAgent, protocol::Frontend::DeviceOrientation>::trace(visitor);
+ InspectorBaseAgent<DeviceOrientationInspectorAgent, protocol::DeviceOrientation::Frontend>::trace(visitor);
}
DeviceOrientationController& DeviceOrientationInspectorAgent::controller()

Powered by Google App Engine
This is Rietveld 408576698