| Index: third_party/WebKit/Source/platform/v8_inspector/InspectorWrapper.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InspectorWrapper.h b/third_party/WebKit/Source/platform/v8_inspector/InspectorWrapper.h
|
| index 10e79c5314f1caa97142e40e8e6f19efe2a15232..f13c507853c39cb3f262420c54b2a50ad0eb33f6 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InspectorWrapper.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InspectorWrapper.h
|
| @@ -5,8 +5,8 @@
|
| #ifndef InspectorWrapper_h
|
| #define InspectorWrapper_h
|
|
|
| +#include "platform/inspector_protocol/Collections.h"
|
| #include "wtf/PassOwnPtr.h"
|
| -#include "wtf/Vector.h"
|
| #include <v8.h>
|
|
|
| namespace blink {
|
| @@ -25,7 +25,7 @@ public:
|
| v8::AccessorNameGetterCallback callback;
|
| };
|
|
|
| - static v8::Local<v8::FunctionTemplate> createWrapperTemplate(v8::Isolate*, const char* className, const Vector<V8MethodConfiguration>& methods, const Vector<V8AttributeConfiguration>& attributes);
|
| + static v8::Local<v8::FunctionTemplate> createWrapperTemplate(v8::Isolate*, const char* className, const protocol::Vector<V8MethodConfiguration>& methods, const protocol::Vector<V8AttributeConfiguration>& attributes);
|
|
|
| protected:
|
| static v8::Local<v8::Object> createWrapper(V8DebuggerClient*, v8::Local<v8::FunctionTemplate>, v8::Local<v8::Context>);
|
| @@ -66,7 +66,7 @@ public:
|
| v8::Global<v8::Object> m_persistent;
|
| };
|
|
|
| - static v8::Local<v8::FunctionTemplate> createWrapperTemplate(v8::Isolate* isolate, const Vector<V8MethodConfiguration>& methods, const Vector<V8AttributeConfiguration>& attributes)
|
| + static v8::Local<v8::FunctionTemplate> createWrapperTemplate(v8::Isolate* isolate, const protocol::Vector<V8MethodConfiguration>& methods, const protocol::Vector<V8AttributeConfiguration>& attributes)
|
| {
|
| return InspectorWrapperBase::createWrapperTemplate(isolate, className, methods, attributes);
|
| }
|
|
|