| Index: components/devtools_http_handler/devtools_http_handler_delegate.h
|
| diff --git a/components/devtools_http_handler/devtools_http_handler_delegate.h b/components/devtools_http_handler/devtools_http_handler_delegate.h
|
| deleted file mode 100644
|
| index fc6bd676d67f13cca7c7ce77e45b993411a31c57..0000000000000000000000000000000000000000
|
| --- a/components/devtools_http_handler/devtools_http_handler_delegate.h
|
| +++ /dev/null
|
| @@ -1,33 +0,0 @@
|
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
|
| -#define COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
|
| -
|
| -#include <string>
|
| -
|
| -#include "url/gurl.h"
|
| -
|
| -namespace content {
|
| -class DevToolsExternalAgentProxyDelegate;
|
| -}
|
| -
|
| -namespace devtools_http_handler {
|
| -
|
| -class DevToolsHttpHandlerDelegate {
|
| - public:
|
| - virtual ~DevToolsHttpHandlerDelegate() {}
|
| -
|
| - // Should return discovery page HTML that should list available tabs
|
| - // and provide attach links.
|
| - virtual std::string GetDiscoveryPageHTML() = 0;
|
| -
|
| - // Returns frontend resource data by |path|. Only used if
|
| - // |BundlesFrontendResources| returns |true|.
|
| - virtual std::string GetFrontendResource(const std::string& path) = 0;
|
| -};
|
| -
|
| -} // namespace devtools_http_handler
|
| -
|
| -#endif // COMPONENTS_DEVTOOLS_HTTP_HANDLER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
|
|
|