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

Unified Diff: components/devtools_http_handler/devtools_http_handler_delegate.h

Issue 2295623002: DevTools: simplify http handler delegate as it is moving into content. (Closed)
Patch Set: lcean 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
index cf4b9db7c74ebfcaca050e954585189b88b7bd8a..fc6bd676d67f13cca7c7ce77e45b993411a31c57 100644
--- a/components/devtools_http_handler/devtools_http_handler_delegate.h
+++ b/components/devtools_http_handler/devtools_http_handler_delegate.h
@@ -26,15 +26,6 @@ class DevToolsHttpHandlerDelegate {
// Returns frontend resource data by |path|. Only used if
// |BundlesFrontendResources| returns |true|.
virtual std::string GetFrontendResource(const std::string& path) = 0;
-
- // Get a thumbnail for a given page. Returns non-empty string iff we have the
- // thumbnail.
- virtual std::string GetPageThumbnailData(const GURL& url) = 0;
-
- // Allows embedder to handle custom websocket-based protocol connection
- // pointing remote debugging port. Returns ownership.
- virtual content::DevToolsExternalAgentProxyDelegate*
- HandleWebSocketConnection(const std::string& path) = 0;
};
} // namespace devtools_http_handler

Powered by Google App Engine
This is Rietveld 408576698