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

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

Issue 1156463003: Oilpan: fix build after r196422. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: InspectorDebuggerAgent fixes Created 5 years, 7 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/inspector/InspectorDebuggerAgent.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/JavaScriptCallFrame.h
diff --git a/Source/core/inspector/JavaScriptCallFrame.h b/Source/core/inspector/JavaScriptCallFrame.h
index 50ac0e26669ab7b6587888ca84f0adc9f30019eb..87fda922338b58140a440d2c8946e6aa5433194f 100644
--- a/Source/core/inspector/JavaScriptCallFrame.h
+++ b/Source/core/inspector/JavaScriptCallFrame.h
@@ -42,9 +42,9 @@ namespace blink {
class JavaScriptCallFrame : public RefCounted<JavaScriptCallFrame> {
public:
- static PassRefPtrWillBeRawPtr<JavaScriptCallFrame> create(v8::Local<v8::Context> debuggerContext, v8::Local<v8::Object> callFrame)
+ static PassRefPtr<JavaScriptCallFrame> create(v8::Local<v8::Context> debuggerContext, v8::Local<v8::Object> callFrame)
{
- return adoptRefWillBeNoop(new JavaScriptCallFrame(debuggerContext, callFrame));
+ return adoptRef(new JavaScriptCallFrame(debuggerContext, callFrame));
}
~JavaScriptCallFrame();
@@ -82,7 +82,7 @@ private:
String callV8FunctionReturnString(const char* name) const;
v8::Isolate* m_isolate;
- RefPtrWillBeMember<JavaScriptCallFrame> m_caller;
+ RefPtr<JavaScriptCallFrame> m_caller;
ScopedPersistent<v8::Context> m_debuggerContext;
ScopedPersistent<v8::Object> m_callFrame;
v8::Global<v8::FunctionTemplate> m_wrapperTemplate;
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698