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

Side by Side Diff: components/ui_devtools/devtools_client.cc

Issue 2462843002: Update ash to use new devtools base agent (Closed)
Patch Set: Rename devtools_dom_agent.* to ash_devtools_dom_agent.* Created 4 years, 1 month 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
« no previous file with comments | « components/ui_devtools/devtools_client.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "components/ui_devtools/devtools_client.h" 5 #include "components/ui_devtools/devtools_client.h"
6 6
7 #include "components/ui_devtools/devtools_server.h" 7 #include "components/ui_devtools/devtools_server.h"
8 8
9 namespace ui { 9 namespace ui {
10 namespace devtools { 10 namespace devtools {
11 11
12 UiDevToolsClient::UiDevToolsClient(const std::string& name, 12 UiDevToolsClient::UiDevToolsClient(const std::string& name,
13 UiDevToolsServer* server) 13 UiDevToolsServer* server)
14 : name_(name), 14 : name_(name),
15 connection_id_(kNotConnected), 15 connection_id_(kNotConnected),
16 dispatcher_(this), 16 dispatcher_(this),
17 server_(server) { 17 server_(server) {
18 DCHECK(server_); 18 DCHECK(server_);
19 } 19 }
20 20
21 UiDevToolsClient::~UiDevToolsClient() {} 21 UiDevToolsClient::~UiDevToolsClient() {}
22 22
23 void UiDevToolsClient::AddAgent(std::unique_ptr<UiDevToolsAgent> agent) { 23 void UiDevToolsClient::AddAgent(std::unique_ptr<UiDevToolsAgent> agent) {
24 agent->Init(&dispatcher_); 24 agent->Init(&dispatcher_);
25 agents_.push_back(std::move(agent)); 25 agents_.push_back(std::move(agent));
26 } 26 }
27 27
28 void UiDevToolsClient::AddDOMBackend(
29 std::unique_ptr<protocol::DOM::Backend> dom_backend) {
30 dom_backend_ = std::move(dom_backend);
31 protocol::DOM::Dispatcher::wire(&dispatcher_, dom_backend_.get());
32 }
33
34 void UiDevToolsClient::Dispatch(const std::string& data) { 28 void UiDevToolsClient::Dispatch(const std::string& data) {
35 dispatcher_.dispatch(protocol::parseJSON(data)); 29 dispatcher_.dispatch(protocol::parseJSON(data));
36 } 30 }
37 31
38 bool UiDevToolsClient::connected() const { 32 bool UiDevToolsClient::connected() const {
39 return connection_id_ != kNotConnected; 33 return connection_id_ != kNotConnected;
40 } 34 }
41 35
42 void UiDevToolsClient::set_connection_id(int connection_id) { 36 void UiDevToolsClient::set_connection_id(int connection_id) {
43 connection_id_ = connection_id; 37 connection_id_ = connection_id;
(...skipping 12 matching lines...) Expand all
56 if (connected()) 50 if (connected())
57 server_->SendOverWebSocket(connection_id_, message); 51 server_->SendOverWebSocket(connection_id_, message);
58 } 52 }
59 53
60 void UiDevToolsClient::flushProtocolNotifications() { 54 void UiDevToolsClient::flushProtocolNotifications() {
61 NOTIMPLEMENTED(); 55 NOTIMPLEMENTED();
62 } 56 }
63 57
64 } // namespace devtools 58 } // namespace devtools
65 } // namespace ui 59 } // namespace ui
OLDNEW
« no previous file with comments | « components/ui_devtools/devtools_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698