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

Unified Diff: Source/modules/geolocation/GeolocationInspectorAgent.cpp

Issue 307943002: Oilpan: Prepare moving InspectorController and InspectorAgents to oilpan. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 6 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: Source/modules/geolocation/GeolocationInspectorAgent.cpp
diff --git a/Source/modules/geolocation/GeolocationInspectorAgent.cpp b/Source/modules/geolocation/GeolocationInspectorAgent.cpp
index 049d821e010ad720106164fe36c24b45079e4892..be33a196335355e585fffe6460343c7a32cadd8c 100644
--- a/Source/modules/geolocation/GeolocationInspectorAgent.cpp
+++ b/Source/modules/geolocation/GeolocationInspectorAgent.cpp
@@ -35,9 +35,9 @@
namespace WebCore {
-PassOwnPtr<GeolocationInspectorAgent> GeolocationInspectorAgent::create()
+PassOwnPtrWillBeRawPtr<GeolocationInspectorAgent> GeolocationInspectorAgent::create()
{
- return adoptPtr(new GeolocationInspectorAgent());
+ return adoptPtrWillBeNoop(new GeolocationInspectorAgent());
}
GeolocationInspectorAgent::~GeolocationInspectorAgent()
@@ -89,14 +89,22 @@ GeolocationPosition* GeolocationInspectorAgent::overrideGeolocationPosition(Geol
return position;
}
-void GeolocationInspectorAgent::AddController(GeolocationController* controller)
+void GeolocationInspectorAgent::addController(GeolocationController* controller)
{
m_controllers.add(controller);
}
-void GeolocationInspectorAgent::RemoveController(GeolocationController* controller)
+void GeolocationInspectorAgent::removeController(GeolocationController* controller)
{
m_controllers.remove(controller);
}
+void GeolocationInspectorAgent::trace(Visitor* visitor)
+{
+ visitor->trace(m_controllers);
+ visitor->trace(m_geolocationPosition);
+ visitor->trace(m_platformGeolocationPosition);
+ InspectorBaseAgent::trace(visitor);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698