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

Unified Diff: content/shell/app/shell_main_delegate.cc

Issue 639293005: Content Shell: Introduce LayoutTestContentBrowserClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 6 years, 2 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
« no previous file with comments | « content/shell/BUILD.gn ('k') | content/shell/browser/layout_test/layout_test_content_browser_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/app/shell_main_delegate.cc
diff --git a/content/shell/app/shell_main_delegate.cc b/content/shell/app/shell_main_delegate.cc
index 65801da0b5766c967a8deaad4b8a91e3eabdaf2b..a3d7331ba31003deb9016318cf96bab4d893022d 100644
--- a/content/shell/app/shell_main_delegate.cc
+++ b/content/shell/app/shell_main_delegate.cc
@@ -20,6 +20,7 @@
#include "content/shell/app/blink_test_platform_support.h"
#include "content/shell/app/shell_crash_reporter_client.h"
#include "content/shell/browser/layout_test/layout_test_browser_main.h"
+#include "content/shell/browser/layout_test/layout_test_content_browser_client.h"
#include "content/shell/browser/shell_browser_main.h"
#include "content/shell/browser/shell_content_browser_client.h"
#include "content/shell/common/shell_switches.h"
@@ -308,15 +309,20 @@ void ShellMainDelegate::InitializeResourceBundle() {
}
ContentBrowserClient* ShellMainDelegate::CreateContentBrowserClient() {
- browser_client_.reset(new ShellContentBrowserClient);
+ browser_client_.reset(
+ CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree) ?
+ new LayoutTestContentBrowserClient :
+ new ShellContentBrowserClient);
+
return browser_client_.get();
}
ContentRendererClient* ShellMainDelegate::CreateContentRendererClient() {
- if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree))
- renderer_client_.reset(new LayoutTestContentRendererClient);
- else
- renderer_client_.reset(new ShellContentRendererClient);
+ renderer_client_.reset(
+ CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree) ?
+ new LayoutTestContentRendererClient :
+ new ShellContentRendererClient);
+
return renderer_client_.get();
}
« no previous file with comments | « content/shell/BUILD.gn ('k') | content/shell/browser/layout_test/layout_test_content_browser_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698