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

Unified Diff: Source/core/frame/Console.h

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/Console.h
diff --git a/Source/core/frame/Console.h b/Source/core/frame/Console.h
index 11453b4e66fb32ca309e568141a555c59fd5bf47..a2a94d54cab6ba1abed3dad946353451cd6429ff 100644
--- a/Source/core/frame/Console.h
+++ b/Source/core/frame/Console.h
@@ -45,6 +45,7 @@ class ScriptArguments;
class Console FINAL : public ConsoleBase, public DOMWindowProperty {
DEFINE_WRAPPERTYPEINFO();
+ WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Console);
public:
static PassRefPtrWillBeRawPtr<Console> create(LocalFrame* frame)
{
@@ -54,7 +55,7 @@ public:
PassRefPtrWillBeRawPtr<MemoryInfo> memory() const;
- virtual void trace(Visitor* visitor) OVERRIDE { ConsoleBase::trace(visitor); }
+ virtual void trace(Visitor*) OVERRIDE;
protected:
virtual ExecutionContext* context() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698