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

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

Issue 2253383002: [DevTools] Schema domain implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: schema Created 4 years, 3 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef V8SchemaAgentImpl_h
6 #define V8SchemaAgentImpl_h
7
8 #include "platform/inspector_protocol/InspectorProtocol.h"
9 #include "platform/v8_inspector/protocol/Schema.h"
10
11 namespace v8_inspector {
12
13 class V8InspectorSessionImpl;
14
15 namespace protocol = blink::protocol;
16
17 class V8SchemaAgentImpl : public protocol::Schema::Backend {
18 PROTOCOL_DISALLOW_COPY(V8SchemaAgentImpl);
19 public:
20 V8SchemaAgentImpl(V8InspectorSessionImpl*, protocol::FrontendChannel*, proto col::DictionaryValue* state);
21 ~V8SchemaAgentImpl() override;
22
23 void getDomains(ErrorString*, std::unique_ptr<protocol::Array<protocol::Sche ma::Domain>>*) override;
24
25 private:
26 V8InspectorSessionImpl* m_session;
27 protocol::Schema::Frontend m_frontend;
28 };
29
30 } // namespace v8_inspector
31
32
33 #endif // !defined(V8SchemaAgentImpl_h)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698