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

Unified Diff: content/public/browser/devtools_http_handler_delegate.h

Issue 9113079: DevTools: refactor remote debugging server to enable content_shell debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch for landing. Created 8 years, 11 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: content/public/browser/devtools_http_handler_delegate.h
diff --git a/content/public/browser/devtools_http_handler_delegate.h b/content/public/browser/devtools_http_handler_delegate.h
index 4e09465208ec88e9f2b7fe264b3a854303cc22b0..42f9e33f86a25284cde26ca02e7282adfa49324a 100644
--- a/content/public/browser/devtools_http_handler_delegate.h
+++ b/content/public/browser/devtools_http_handler_delegate.h
@@ -32,6 +32,13 @@ class DevToolsHttpHandlerDelegate {
// Should return URL request context for issuing requests against devtools
// webui or NULL if no context is available. Called on the IO thread.
virtual net::URLRequestContext* GetURLRequestContext() = 0;
+
+ // Returns true if and only if frontend resources are bundled.
+ virtual bool BundlesFrontendResources() = 0;
+
+ // Returns URL that front-end files are available at, empty string if
+ // no internal server is available.
+ virtual std::string GetFrontendResourcesBaseURL() = 0;
};
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698