Give names to all utility processes.
[chromium-blink-merge.git] / chrome / browser / devtools / browser_list_tabcontents_provider.h
blobfa36ae1201c05ed24e306914a27d7af9b06d5313
1 // Copyright (c) 2012 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 CHROME_BROWSER_DEVTOOLS_BROWSER_LIST_TABCONTENTS_PROVIDER_H_
6 #define CHROME_BROWSER_DEVTOOLS_BROWSER_LIST_TABCONTENTS_PROVIDER_H_
8 #include "chrome/browser/ui/host_desktop.h"
9 #include "content/public/browser/devtools_http_handler_delegate.h"
11 class BrowserListTabContentsProvider
12 : public content::DevToolsHttpHandlerDelegate {
13 public:
14 BrowserListTabContentsProvider();
15 ~BrowserListTabContentsProvider() override;
17 // DevToolsHttpHandlerDelegate implementation.
18 std::string GetDiscoveryPageHTML() override;
19 bool BundlesFrontendResources() override;
20 base::FilePath GetDebugFrontendDir() override;
22 private:
23 DISALLOW_COPY_AND_ASSIGN(BrowserListTabContentsProvider);
26 #endif // CHROME_BROWSER_DEVTOOLS_BROWSER_LIST_TABCONTENTS_PROVIDER_H_