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

Side by Side Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSession.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 V8InspectorSession_h 5 #ifndef V8InspectorSession_h
6 #define V8InspectorSession_h 6 #define V8InspectorSession_h
7 7
8 #include "platform/inspector_protocol/Array.h" 8 #include "platform/inspector_protocol/InspectorProtocol.h"
9 #include "platform/inspector_protocol/Platform.h"
10 #include "platform/v8_inspector/public/protocol/Debugger.h" 9 #include "platform/v8_inspector/public/protocol/Debugger.h"
11 #include "platform/v8_inspector/public/protocol/Runtime.h" 10 #include "platform/v8_inspector/public/protocol/Runtime.h"
12 11
13 #include <v8.h> 12 #include <v8.h>
14 13
15 namespace blink { 14 namespace blink {
16 15
17 class PLATFORM_EXPORT V8InspectorSession { 16 class PLATFORM_EXPORT V8InspectorSession {
18 public: 17 public:
19 virtual ~V8InspectorSession() { } 18 virtual ~V8InspectorSession() { }
(...skipping 22 matching lines...) Expand all
42 41
43 // Remote objects. 42 // Remote objects.
44 virtual std::unique_ptr<protocol::Runtime::API::RemoteObject> wrapObject(v8: :Local<v8::Context>, v8::Local<v8::Value>, const String16& groupName) = 0; 43 virtual std::unique_ptr<protocol::Runtime::API::RemoteObject> wrapObject(v8: :Local<v8::Context>, v8::Local<v8::Value>, const String16& groupName) = 0;
45 virtual bool unwrapObject(ErrorString*, const String16& objectId, v8::Local< v8::Value>*, v8::Local<v8::Context>*, String16* objectGroup) = 0; 44 virtual bool unwrapObject(ErrorString*, const String16& objectId, v8::Local< v8::Value>*, v8::Local<v8::Context>*, String16* objectGroup) = 0;
46 virtual void releaseObjectGroup(const String16&) = 0; 45 virtual void releaseObjectGroup(const String16&) = 0;
47 }; 46 };
48 47
49 } // namespace blink 48 } // namespace blink
50 49
51 #endif // V8InspectorSession_h 50 #endif // V8InspectorSession_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698