| Index: content/shell/browser/shell_content_browser_client.cc
|
| diff --git a/content/shell/browser/shell_content_browser_client.cc b/content/shell/browser/shell_content_browser_client.cc
|
| index d4394f3ef5b12bbd2557cced12490f4b99ae8f05..90060ef227312a53fec40f62d71fe6a319f4dd3a 100644
|
| --- a/content/shell/browser/shell_content_browser_client.cc
|
| +++ b/content/shell/browser/shell_content_browser_client.cc
|
| @@ -210,10 +210,15 @@ void ShellContentBrowserClient::AppendExtraCommandLineSwitches(
|
| CommandLine* command_line, int child_process_id) {
|
| if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree))
|
| command_line->AppendSwitch(switches::kDumpRenderTree);
|
| + // FIXME(dro) crbug.com/367082: Remove the smoothing parameter
|
| + // once the command line switch rename is complete on the Blink side.
|
| if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kEnableFontSmoothing))
|
| command_line->AppendSwitch(switches::kEnableFontSmoothing);
|
| if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| + switches::kEnableFontAntialiasing))
|
| + command_line->AppendSwitch(switches::kEnableFontAntialiasing);
|
| + if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kExposeInternalsForTesting))
|
| command_line->AppendSwitch(switches::kExposeInternalsForTesting);
|
| if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kStableReleaseMode))
|
|
|