| Index: chrome/common/chrome_switches.cc
|
| ===================================================================
|
| --- chrome/common/chrome_switches.cc (revision 21632)
|
| +++ chrome/common/chrome_switches.cc (working copy)
|
| @@ -477,45 +477,49 @@
|
| // persistent representation generated by field_trial.cc and later decoded, is a
|
| // list of name and value pairs, separated by slashes. See field trial.cc for
|
| // current details.
|
| -const wchar_t kForceFieldTestNameAndValue[] = L"force-fieldtest";
|
| +const wchar_t kForceFieldTestNameAndValue[] = L"force-fieldtest";
|
|
|
| // Allows the new tab page resource to be loaded from a local HTML file. This
|
| // should be a path to the HTML file that you want to use for the new tab page.
|
| -const wchar_t kNewTabPage[] = L"new-tab-page";
|
| +const wchar_t kNewTabPage[] = L"new-tab-page";
|
|
|
| // Switches back to the old new tab page.
|
| -const wchar_t kOldNewTabPage[] = L"old-new-tab-page";
|
| +const wchar_t kOldNewTabPage[] = L"old-new-tab-page";
|
|
|
| // Enables the backend service for web resources, used in the new tab page for
|
| // loading tips and recommendations from a JSON feed.
|
| -const wchar_t kEnableWebResources[] = L"enable-web-resources";
|
| +const wchar_t kEnableWebResources[] = L"enable-web-resources";
|
|
|
| +// Whether we should prevent the new tab page from showing the first run
|
| +// notification.
|
| +const wchar_t kDisableNewTabFirstRun[] = L"disable-new-tab-first-run";
|
| +
|
| // Disables the default browser check. Useful for UI/browser tests where we want
|
| // to avoid having the default browser info-bar displayed.
|
| -const wchar_t kNoDefaultBrowserCheck[] = L"no-default-browser-check";
|
| +const wchar_t kNoDefaultBrowserCheck[] = L"no-default-browser-check";
|
|
|
| // Enables the Privacy Blacklist with the specified data file.
|
| // The file contains data from all imported blacklists.
|
| const wchar_t kPrivacyBlacklist[] = L"privacy-blacklist";
|
|
|
| // Enables the benchmarking extensions.
|
| -const wchar_t kEnableBenchmarking[] = L"enable-benchmarking";
|
| +const wchar_t kEnableBenchmarking[] = L"enable-benchmarking";
|
|
|
| // The prefix used when starting the zygote process. (i.e. 'gdb --args')
|
| const wchar_t kZygoteCmdPrefix[] = L"zygote-cmd-prefix";
|
|
|
| // Enables using ThumbnailStore instead of ThumbnailDatabase for setting and
|
| // getting thumbnails for the new tab page.
|
| -const wchar_t kThumbnailStore[] = L"thumbnail-store";
|
| +const wchar_t kThumbnailStore[] = L"thumbnail-store";
|
|
|
| // Experimental. Shows a dialog asking the user to try chrome. This flag
|
| // is to be used only by the upgrade process.
|
| -const wchar_t kTryChromeAgain[] = L"try-chrome-again";
|
| +const wchar_t kTryChromeAgain[] = L"try-chrome-again";
|
|
|
| // The file descriptor limit is set to the value of this switch, subject to the
|
| // OS hard limits. Useful for testing that file descriptor exhaustion is handled
|
| // gracefully.
|
| -const wchar_t kFileDescriptorLimit[] = L"file-descriptor-limit";
|
| +const wchar_t kFileDescriptorLimit[] = L"file-descriptor-limit";
|
|
|
| // On Windows, converts the page to the currently-installed monitor profile.
|
| // This does NOT enable color management for images. The source is still assumed
|
|
|