Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Unified Diff: components/devtools_http_handler/devtools_http_handler_delegate.h

Issue 2300703005: DevTools: merge devtools_http_handler into content - it is used in all the embedders anyways. (Closed)
Patch Set: for_landing! Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698