diff options
author | dcheng <dcheng@chromium.org> | 2015-02-04 20:44:07 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-05 04:44:59 +0000 |
commit | 4d353255acdd6735c78ef15960203553f68ce26b (patch) | |
tree | 4ecb5221afe177b2d36b3eff0210117dcddbb0fa /content/shell/app/shell_main_delegate_mac.mm | |
parent | 0b0860a692e9d327f4f76949d096a7f2b1687c7c (diff) | |
download | chromium_src-4d353255acdd6735c78ef15960203553f68ce26b.zip chromium_src-4d353255acdd6735c78ef15960203553f68ce26b.tar.gz chromium_src-4d353255acdd6735c78ef15960203553f68ce26b.tar.bz2 |
Revert of Chromium-side patch to rename "--dump-render-tree" to "--run-layout-test". (patchset #1 id:1 of https://codereview.chromium.org/899103002/)
Reason for revert:
Speculatively reverting to try to fix broken Mac 10.8 retina and Nexus 4 layout tests.
Original issue's description:
> Chromium-side patch to rename "--dump-render-tree" to "--run-layout-test".
>
> At this point, "--run-layout-test" is the flag that is actually functional, and using "--dump-render-tree" simply causes the "--run-layout-test" to be appended to the command line.
>
> A subsequent Blink patch will change the scripts in Blink to use "--run-layout-test" instead of "--dump-render-tree".
>
> BUG=453252
>
> Committed: https://crrev.com/7066b52aa7103b402dea27c64ec17d45c373a838
> Cr-Commit-Position: refs/heads/master@{#314664}
TBR=avi@chromium.org,paulmeyer@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=453252
Review URL: https://codereview.chromium.org/896403002
Cr-Commit-Position: refs/heads/master@{#314756}
Diffstat (limited to 'content/shell/app/shell_main_delegate_mac.mm')
-rw-r--r-- | content/shell/app/shell_main_delegate_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/shell/app/shell_main_delegate_mac.mm b/content/shell/app/shell_main_delegate_mac.mm index bba20a1..319171f 100644 --- a/content/shell/app/shell_main_delegate_mac.mm +++ b/content/shell/app/shell_main_delegate_mac.mm @@ -29,7 +29,7 @@ void EnsureCorrectResolutionSettings() { initWithContentsOfFile:base::mac::FilePathToNSString(info_plist)]); bool running_layout_tests = base::CommandLine::ForCurrentProcess()->HasSwitch( - switches::kRunLayoutTest); + switches::kDumpRenderTree); bool not_high_resolution_capable = [info_dict objectForKey:kHighResolutionCapable] && [[info_dict objectForKey:kHighResolutionCapable] isEqualToNumber:@(NO)]; |