summaryrefslogtreecommitdiffstats
path: root/content/public/browser/devtools_http_handler_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/public/browser/devtools_http_handler_delegate.h')
-rw-r--r--content/public/browser/devtools_http_handler_delegate.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/content/public/browser/devtools_http_handler_delegate.h b/content/public/browser/devtools_http_handler_delegate.h
deleted file mode 100644
index 4f96413..0000000
--- a/content/public/browser/devtools_http_handler_delegate.h
+++ /dev/null
@@ -1,36 +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 CONTENT_PUBLIC_BROWSER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
-#define CONTENT_PUBLIC_BROWSER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_
-
-#include <string>
-#include <vector>
-
-#include "base/files/file_path.h"
-#include "base/memory/scoped_ptr.h"
-#include "net/socket/server_socket.h"
-
-namespace content {
-
-class DevToolsTarget;
-
-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 true if and only if frontend resources are bundled.
- virtual bool BundlesFrontendResources() = 0;
-
- // Returns path to the front-end files on the local filesystem for debugging.
- virtual base::FilePath GetDebugFrontendDir() = 0;
-};
-
-} // namespace content
-
-#endif // CONTENT_PUBLIC_BROWSER_DEVTOOLS_HTTP_HANDLER_DELEGATE_H_