Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/V8Console.h

Issue 1916023002: [DevTools] Move last inspected objects to V8InspectorSessionImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-part-command-line-api-to-native
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698