OLD | NEW |
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 ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_DISCOVERY_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_ANDROID_DEV_TOOLS_DISCOVERY_PROVIDER_ANDROID_H_ |
6 #define ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_DISCOVERY_PROVIDER_H_ | 6 #define CHROME_BROWSER_ANDROID_DEV_TOOLS_DISCOVERY_PROVIDER_ANDROID_H_ |
7 | 7 |
8 #include "components/devtools_discovery/devtools_discovery_manager.h" | 8 #include "components/devtools_discovery/devtools_discovery_manager.h" |
9 | 9 |
10 namespace android_webview { | 10 class DevToolsDiscoveryProviderAndroid : |
11 | |
12 class AwDevToolsDiscoveryProvider : | |
13 public devtools_discovery::DevToolsDiscoveryManager::Provider { | 11 public devtools_discovery::DevToolsDiscoveryManager::Provider { |
14 public: | 12 public: |
15 AwDevToolsDiscoveryProvider(); | 13 // Installs provider to devtools_discovery. |
16 ~AwDevToolsDiscoveryProvider() override; | 14 static void Install(); |
| 15 |
| 16 ~DevToolsDiscoveryProviderAndroid() override; |
17 | 17 |
18 // devtools_discovery::DevToolsDiscoveryManager::Provider implementation. | 18 // devtools_discovery::DevToolsDiscoveryManager::Provider implementation. |
19 devtools_discovery::DevToolsTargetDescriptor::List GetDescriptors() override; | 19 devtools_discovery::DevToolsTargetDescriptor::List GetDescriptors() override; |
20 | 20 |
21 private: | 21 private: |
22 DISALLOW_COPY_AND_ASSIGN(AwDevToolsDiscoveryProvider); | 22 DevToolsDiscoveryProviderAndroid(); |
| 23 |
| 24 DISALLOW_COPY_AND_ASSIGN(DevToolsDiscoveryProviderAndroid); |
23 }; | 25 }; |
24 | 26 |
25 } // namespace android_webview | 27 #endif // CHROME_BROWSER_ANDROID_DEV_TOOLS_DISCOVERY_PROVIDER_ANDROID_H_ |
26 | |
27 #endif // ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_DISCOVERY_PROVIDER_H_ | |
OLD | NEW |