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

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

Issue 642813006: content: Rename webkit_test_platform_support* to blink_test_platform_support* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix GN 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
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 ae2b566d814436d65b0007e35ebaf9997ac982f9..65801da0b5766c967a8deaad4b8a91e3eabdaf2b 100644
--- a/content/shell/app/shell_main_delegate.cc
+++ b/content/shell/app/shell_main_delegate.cc
@@ -17,8 +17,8 @@
#include "content/public/common/content_switches.h"
#include "content/public/common/url_constants.h"
#include "content/public/test/layouttest_support.h"
+#include "content/shell/app/blink_test_platform_support.h"
#include "content/shell/app/shell_crash_reporter_client.h"
-#include "content/shell/app/webkit_test_platform_support.h"
#include "content/shell/browser/layout_test/layout_test_browser_main.h"
#include "content/shell/browser/shell_browser_main.h"
#include "content/shell/browser/shell_content_browser_client.h"
@@ -121,7 +121,7 @@ bool ShellMainDelegate::BasicStartupComplete(int* exit_code) {
#endif
#if defined(OS_MACOSX)
// Needs to happen before InitializeResourceBundle() and before
- // WebKitTestPlatformInitialize() are called.
+ // BlinkTestPlatformInitialize() are called.
OverrideFrameworkBundlePath();
OverrideChildProcessPath();
EnsureCorrectResolutionSettings();
@@ -131,7 +131,7 @@ bool ShellMainDelegate::BasicStartupComplete(int* exit_code) {
CommandLine& command_line = *CommandLine::ForCurrentProcess();
if (command_line.HasSwitch(switches::kCheckLayoutTestSysDeps)) {
// If CheckLayoutSystemDeps succeeds, we don't exit early. Instead we
- // continue and try to load the fonts in WebKitTestPlatformInitialize
+ // continue and try to load the fonts in BlinkTestPlatformInitialize
// below, and then try to bring up the rest of the content module.
if (!CheckLayoutSystemDeps()) {
if (exit_code)
@@ -190,7 +190,7 @@ bool ShellMainDelegate::BasicStartupComplete(int* exit_code) {
net::RemoveProprietaryMediaTypesAndCodecsForTests();
#endif
- if (!WebKitTestPlatformInitialize()) {
+ if (!BlinkTestPlatformInitialize()) {
if (exit_code)
*exit_code = 1;
return true;
« no previous file with comments | « content/shell/app/blink_test_platform_support_win.cc ('k') | content/shell/app/webkit_test_platform_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698