| Index: src/inspector/v8-console.h
|
| diff --git a/src/inspector/v8-console.h b/src/inspector/v8-console.h
|
| index a64db99daec016cec35e716ca8616cf9de2a6c1a..aa6bf5e3d6dfcc17a29caeeda84d47c2bd5a8f2c 100644
|
| --- a/src/inspector/v8-console.h
|
| +++ b/src/inspector/v8-console.h
|
| @@ -12,14 +12,17 @@
|
| namespace v8_inspector {
|
|
|
| class InspectedContext;
|
| +class V8InspectorImpl;
|
|
|
| // Console API
|
| // https://console.spec.whatwg.org/#console-interface
|
| class V8Console {
|
| public:
|
| - static v8::Local<v8::Object> createConsole(InspectedContext*,
|
| - bool hasMemoryAttribute);
|
| + static v8::Local<v8::Object> createConsole(InspectedContext*);
|
| static v8::Local<v8::Object> createCommandLineAPI(InspectedContext*);
|
| + static void installMemoryGetter(V8InspectorImpl* inspector,
|
| + v8::Local<v8::Context> context,
|
| + v8::Local<v8::Object> console);
|
|
|
| class CommandLineAPIScope {
|
| public:
|
|
|