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
3 // found in the LICENSE file.
5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_DISCOVERY_PROVIDER_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_DISCOVERY_PROVIDER_H_
8 #include "components/devtools_discovery/devtools_discovery_manager.h"
10 namespace android_webview
{
12 class AwDevToolsDiscoveryProvider
:
13 public devtools_discovery::DevToolsDiscoveryManager::Provider
{
15 AwDevToolsDiscoveryProvider();
16 ~AwDevToolsDiscoveryProvider() override
;
18 // devtools_discovery::DevToolsDiscoveryManager::Provider implementation.
19 devtools_discovery::DevToolsTargetDescriptor::List
GetDescriptors() override
;
22 DISALLOW_COPY_AND_ASSIGN(AwDevToolsDiscoveryProvider
);
25 } // namespace android_webview
27 #endif // ANDROID_WEBVIEW_BROWSER_AW_DEV_TOOLS_DISCOVERY_PROVIDER_H_