| Index: third_party/WebKit/Source/platform/v8_inspector/V8Console.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Console.h b/third_party/WebKit/Source/platform/v8_inspector/V8Console.h
|
| index 5b0125191e1dd65a0b99d0e858378cbba02e42fd..08fbc87cc0db6904ee21f3c1f8ce80cfdba753e3 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8Console.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8Console.h
|
| @@ -56,6 +56,12 @@ private:
|
| static void monitorFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| static void unmonitorFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| static void lastEvaluationResultCallback(const v8::FunctionCallbackInfo<v8::Value>&);
|
| + static void inspectedObject(const v8::FunctionCallbackInfo<v8::Value>&, unsigned num);
|
| + static void inspectedObject0(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 0); }
|
| + static void inspectedObject1(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 1); }
|
| + static void inspectedObject2(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 2); }
|
| + static void inspectedObject3(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 3); }
|
| + static void inspectedObject4(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 4); }
|
| };
|
|
|
| } // namespace blink
|
|
|