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

Unified Diff: Source/core/inspector/ScriptCallStack.h

Issue 395623007: Oilpan: fix build after r178153. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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 | « no previous file | Source/core/inspector/ScriptCallStack.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/ScriptCallStack.h
diff --git a/Source/core/inspector/ScriptCallStack.h b/Source/core/inspector/ScriptCallStack.h
index 976d9649db472bfbab1c095fa1235b9f8ab83da8..049e4c7f02c6461303de73d4c7574d92fd0ce113 100644
--- a/Source/core/inspector/ScriptCallStack.h
+++ b/Source/core/inspector/ScriptCallStack.h
@@ -42,7 +42,7 @@ namespace WebCore {
class ScriptAsyncCallStack;
-class ScriptCallStack : public RefCountedWillBeGarbageCollectedFinalized<ScriptCallStack> {
+class ScriptCallStack FINAL : public RefCountedWillBeGarbageCollectedFinalized<ScriptCallStack> {
DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ScriptCallStack);
public:
static const size_t maxCallStackSizeToCapture = 200;
@@ -57,13 +57,13 @@ public:
PassRefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > buildInspectorArray() const;
- void trace(Visitor*) { }
+ void trace(Visitor*);
private:
explicit ScriptCallStack(Vector<ScriptCallFrame>&);
Vector<ScriptCallFrame> m_frames;
- RefPtrWillBePersistent<ScriptAsyncCallStack> m_asyncCallStack;
+ RefPtrWillBeMember<ScriptAsyncCallStack> m_asyncCallStack;
};
} // namespace WebCore
« no previous file with comments | « no previous file | Source/core/inspector/ScriptCallStack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698