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

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

Issue 2238423002: [DevTools] Generate all files in inspector_protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2240663003
Patch Set: Created 4 years, 4 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 "platform/inspector_protocol/Allocator.h" 8 #include "platform/inspector_protocol/InspectorProtocol.h"
9 #include <v8.h> 9 #include <v8.h>
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class InspectedContext; 13 class InspectedContext;
14 14
15 // Console API 15 // Console API
16 // https://console.spec.whatwg.org/#console-interface 16 // https://console.spec.whatwg.org/#console-interface
17 class V8Console { 17 class V8Console {
18 public: 18 public:
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 static void inspectedObject0(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 0); } 80 static void inspectedObject0(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 0); }
81 static void inspectedObject1(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 1); } 81 static void inspectedObject1(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 1); }
82 static void inspectedObject2(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 2); } 82 static void inspectedObject2(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 2); }
83 static void inspectedObject3(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 3); } 83 static void inspectedObject3(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 3); }
84 static void inspectedObject4(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 4); } 84 static void inspectedObject4(const v8::FunctionCallbackInfo<v8::Value>& info ) { inspectedObject(info, 4); }
85 }; 85 };
86 86
87 } // namespace blink 87 } // namespace blink
88 88
89 #endif // V8Console_h 89 #endif // V8Console_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698