Chromium Code Reviews| 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*); |