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

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: 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 aee328e59e988ddb4b2ccb61cf6b43fa27554a2f..3f8638b6078a4aab86999f6a72300116b07cba45 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()
@@ -99,4 +99,11 @@ void GeolocationInspectorAgent::RemoveController(GeolocationController* controll
m_controllers.remove(controller);
}
+void GeolocationInspectorAgent::trace(Visitor* visitor)
+{
+ visitor->trace(m_geolocationPosition);
+ visitor->trace(m_platformGeolocationPosition);
+ InspectorBaseAgent::trace(visitor);
+}
+
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698