Chromium Code Reviews| 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 8dcbcac50135053ecb37dd5cf244acedd7395013..622984ac8626ab6ed64e4eee443c0e63ca182c26 100644 |
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8Console.h |
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8Console.h |
| @@ -55,6 +55,12 @@ private: |
| static void undebugFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| static void monitorFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| static void unmonitorFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| + static void inspectedObject(const v8::FunctionCallbackInfo<v8::Value>&, unsigned num); |
| + static void firstInspectedObject(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 0); } |
|
dgozman
2016/04/25 18:20:28
I'd name these inspectedObject0...4. WDYT?
kozy
2016/04/25 20:33:26
Done.
|
| + static void secondInspectedObject(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 1); } |
| + static void thirdInspectedObject(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 2); } |
| + static void fourthInspectedObject(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 3); } |
| + static void fifthInspectedObject(const v8::FunctionCallbackInfo<v8::Value>& info) { inspectedObject(info, 4); } |
| }; |
| } // namespace blink |