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

Unified Diff: Source/core/testing/Internals.cpp

Issue 211373002: Oilpan: move DOMWindow object to the oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: setNativeInfoForInnerGlobalObject() -> setNativeInfoForHiddenWrapper() Created 6 years, 9 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
« no previous file with comments | « Source/core/testing/Internals.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/Internals.cpp
diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp
index 902c46797b8dd1a007ef67fe80f682b318816d09..a20c265b8ae6db1ef8b6debd8b54eb0b5d03a5ea 100644
--- a/Source/core/testing/Internals.cpp
+++ b/Source/core/testing/Internals.cpp
@@ -1555,7 +1555,7 @@ Vector<String> Internals::consoleMessageArgumentCounts(Document* document) const
return result;
}
-PassRefPtr<DOMWindow> Internals::openDummyInspectorFrontend(const String& url)
+PassRefPtrWillBeRawPtr<DOMWindow> Internals::openDummyInspectorFrontend(const String& url)
{
Page* page = contextDocument()->frame()->page();
ASSERT(page);
@@ -2420,6 +2420,7 @@ ScriptPromise Internals::addOneToPromise(ExecutionContext* context, ScriptPromis
void Internals::trace(Visitor* visitor)
{
+ visitor->trace(m_frontendWindow);
visitor->trace(m_runtimeFlags);
visitor->trace(m_profilers);
}
« no previous file with comments | « Source/core/testing/Internals.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698