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

Unified Diff: Source/core/frame/Location.cpp

Issue 552733003: Oilpan: make DOMWindowProperty a GC mixin. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Pacify GC plugin wrt LocalDOMWindow::trace() Created 6 years, 3 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/core/frame/Location.cpp
diff --git a/Source/core/frame/Location.cpp b/Source/core/frame/Location.cpp
index 7e3f4504a18b085682e8b84523b21c50fac9b952..023edca250dada2eaa939ddaa91d73aa7c5ec5bf 100644
--- a/Source/core/frame/Location.cpp
+++ b/Source/core/frame/Location.cpp
@@ -46,6 +46,11 @@ Location::Location(LocalFrame* frame)
{
}
+void Location::trace(Visitor* visitor)
+{
+ DOMWindowProperty::trace(visitor);
+}
+
inline const KURL& Location::url() const
{
ASSERT(m_frame);

Powered by Google App Engine
This is Rietveld 408576698