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

Unified Diff: chrome/common/chrome_switches.cc

Issue 160108: Disable first run for the New Tab Cold perf test.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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 | « chrome/common/chrome_switches.h ('k') | chrome/test/startup/feature_startup_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/test/startup/feature_startup_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698