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

Unified Diff: content/shell/browser/shell_browser_main_parts.h

Issue 2300703005: DevTools: merge devtools_http_handler into content - it is used in all the embedders anyways. (Closed)
Patch Set: for review 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: content/shell/browser/shell_browser_main_parts.h
diff --git a/content/shell/browser/shell_browser_main_parts.h b/content/shell/browser/shell_browser_main_parts.h
index 44ad24046d31fc399deece41097e4791995bb179..fb42e7688ee17819c4fab02adc4c3981e8b399e1 100644
--- a/content/shell/browser/shell_browser_main_parts.h
+++ b/content/shell/browser/shell_browser_main_parts.h
@@ -23,10 +23,6 @@ class CrashDumpManager;
}
#endif
-namespace devtools_http_handler {
-class DevToolsHttpHandler;
-}
-
namespace net {
class NetLog;
}
@@ -50,10 +46,6 @@ class ShellBrowserMainParts : public BrowserMainParts {
void PostMainMessageLoopRun() override;
void PostDestroyThreads() override;
- devtools_http_handler::DevToolsHttpHandler* devtools_http_handler() {
- return devtools_http_handler_.get();
- }
-
ShellBrowserContext* browser_context() { return browser_context_.get(); }
ShellBrowserContext* off_the_record_browser_context() {
return off_the_record_browser_context_.get();
@@ -81,9 +73,6 @@ class ShellBrowserMainParts : public BrowserMainParts {
const MainFunctionParams parameters_;
bool run_message_loop_;
- std::unique_ptr<devtools_http_handler::DevToolsHttpHandler>
- devtools_http_handler_;
-
#if defined(OS_ANDROID)
std::unique_ptr<breakpad::CrashDumpManager> crash_dump_manager_;
#endif

Powered by Google App Engine
This is Rietveld 408576698