| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8Console_h | 5 #ifndef V8Console_h |
| 6 #define V8Console_h | 6 #define V8Console_h |
| 7 | 7 |
| 8 #include <v8.h> | 8 #include <v8.h> |
| 9 | 9 |
| 10 namespace blink { | 10 namespace blink { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 static void memorySetterCallback(const v8::FunctionCallbackInfo<v8::Value>&)
; | 49 static void memorySetterCallback(const v8::FunctionCallbackInfo<v8::Value>&)
; |
| 50 | 50 |
| 51 // CommandLineAPI | 51 // CommandLineAPI |
| 52 static void keysCallback(const v8::FunctionCallbackInfo<v8::Value>&); | 52 static void keysCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| 53 static void valuesCallback(const v8::FunctionCallbackInfo<v8::Value>&); | 53 static void valuesCallback(const v8::FunctionCallbackInfo<v8::Value>&); |
| 54 static void debugFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>&
); | 54 static void debugFunctionCallback(const v8::FunctionCallbackInfo<v8::Value>&
); |
| 55 static void undebugFunctionCallback(const v8::FunctionCallbackInfo<v8::Value
>&); | 55 static void undebugFunctionCallback(const v8::FunctionCallbackInfo<v8::Value
>&); |
| 56 static void monitorFunctionCallback(const v8::FunctionCallbackInfo<v8::Value
>&); | 56 static void monitorFunctionCallback(const v8::FunctionCallbackInfo<v8::Value
>&); |
| 57 static void unmonitorFunctionCallback(const v8::FunctionCallbackInfo<v8::Val
ue>&); | 57 static void unmonitorFunctionCallback(const v8::FunctionCallbackInfo<v8::Val
ue>&); |
| 58 static void lastEvaluationResultCallback(const v8::FunctionCallbackInfo<v8::
Value>&); | 58 static void lastEvaluationResultCallback(const v8::FunctionCallbackInfo<v8::
Value>&); |
| 59 static void inspectedObject(const v8::FunctionCallbackInfo<v8::Value>&, unsi
gned num); |
| 60 static void inspectedObject0(const v8::FunctionCallbackInfo<v8::Value>& info
) { inspectedObject(info, 0); } |
| 61 static void inspectedObject1(const v8::FunctionCallbackInfo<v8::Value>& info
) { inspectedObject(info, 1); } |
| 62 static void inspectedObject2(const v8::FunctionCallbackInfo<v8::Value>& info
) { inspectedObject(info, 2); } |
| 63 static void inspectedObject3(const v8::FunctionCallbackInfo<v8::Value>& info
) { inspectedObject(info, 3); } |
| 64 static void inspectedObject4(const v8::FunctionCallbackInfo<v8::Value>& info
) { inspectedObject(info, 4); } |
| 59 }; | 65 }; |
| 60 | 66 |
| 61 } // namespace blink | 67 } // namespace blink |
| 62 | 68 |
| 63 #endif // V8Console_h | 69 #endif // V8Console_h |
| OLD | NEW |