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

Side by Side Diff: components/devtools_service/devtools_agent_host.h

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 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/devtools_service/DEPS ('k') | components/devtools_service/devtools_http_server.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_ 5 #ifndef COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_
6 #define COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_ 6 #define COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h " 11 #include "components/devtools_service/public/interfaces/devtools_service.mojom.h "
12 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" 12 #include "mojo/public/cpp/bindings/binding.h"
13 #include "third_party/mojo/src/mojo/public/cpp/bindings/callback.h" 13 #include "mojo/public/cpp/bindings/callback.h"
14 14
15 namespace devtools_service { 15 namespace devtools_service {
16 16
17 // DevToolsAgentHost represents a DevTools agent at the service side. 17 // DevToolsAgentHost represents a DevTools agent at the service side.
18 class DevToolsAgentHost : public DevToolsAgentClient { 18 class DevToolsAgentHost : public DevToolsAgentClient {
19 public: 19 public:
20 class Delegate { 20 class Delegate {
21 public: 21 public:
22 virtual ~Delegate() {} 22 virtual ~Delegate() {}
23 23
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 mojo::Binding<DevToolsAgentClient> binding_; 60 mojo::Binding<DevToolsAgentClient> binding_;
61 61
62 Delegate* delegate_; 62 Delegate* delegate_;
63 63
64 DISALLOW_COPY_AND_ASSIGN(DevToolsAgentHost); 64 DISALLOW_COPY_AND_ASSIGN(DevToolsAgentHost);
65 }; 65 };
66 66
67 } // namespace devtools_service 67 } // namespace devtools_service
68 68
69 #endif // COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_ 69 #endif // COMPONENTS_DEVTOOLS_SERVICE_DEVTOOLS_AGENT_HOST_H_
OLDNEW
« no previous file with comments | « components/devtools_service/DEPS ('k') | components/devtools_service/devtools_http_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698