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

Unified Diff: Source/bindings/core/v8/inspector/V8InjectedScriptHost.h

Issue 1171463003: Oilpan: fix build after r196513. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 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/bindings/core/v8/inspector/V8InjectedScriptHost.h
diff --git a/Source/bindings/core/v8/inspector/V8InjectedScriptHost.h b/Source/bindings/core/v8/inspector/V8InjectedScriptHost.h
index 1f16662155a65c04000a8a43c707726b52cee011..f7f8c9e4e3caf668870610833338752daa741c77 100644
--- a/Source/bindings/core/v8/inspector/V8InjectedScriptHost.h
+++ b/Source/bindings/core/v8/inspector/V8InjectedScriptHost.h
@@ -5,6 +5,7 @@
#ifndef V8InjectedScriptHost_h
#define V8InjectedScriptHost_h
+#include "platform/heap/Handle.h"
#include "wtf/Forward.h"
yurys 2015/06/05 07:54:58 Actually, since this code is going to be move out
sof 2015/06/05 07:59:26 Yeah, this is a time waster - breaks things on the
#include <v8.h>
@@ -14,7 +15,7 @@ class InjectedScriptHost;
class V8InjectedScriptHost {
public:
- static v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::FunctionTemplate> constructorTemplate, PassRefPtr<InjectedScriptHost>);
+ static v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::FunctionTemplate> constructorTemplate, PassRefPtrWillBeRawPtr<InjectedScriptHost>);
static InjectedScriptHost* toImpl(v8::Local<v8::Object>);
static v8::Local<v8::FunctionTemplate> createWrapperTemplate(v8::Isolate*);

Powered by Google App Engine
This is Rietveld 408576698