diff options
author | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-01 00:52:14 +0000 |
---|---|---|
committer | arv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-01 00:52:14 +0000 |
commit | c664beb3d7ae2676c35db44d14eadd4b75c21164 (patch) | |
tree | 78272c31638dbe652af189f7047e7e71ab9bc6e5 /chrome/common/pref_names.cc | |
parent | 18346ce5509557b3730a44d405619e4e6724754e (diff) | |
download | chromium_src-c664beb3d7ae2676c35db44d14eadd4b75c21164.zip chromium_src-c664beb3d7ae2676c35db44d14eadd4b75c21164.tar.gz chromium_src-c664beb3d7ae2676c35db44d14eadd4b75c21164.tar.bz2 |
When apps are enabled we hide the most visited and recent changes at first run.
This is done by a new pref kNTPAppLauncherFirstRun to ensure we only hide them once.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/1763022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46170 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/pref_names.cc')
-rw-r--r-- | chrome/common/pref_names.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 584d2b2..40bd9f4 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -748,6 +748,9 @@ const wchar_t kNTPTipsServer[] = L"ntp.tips_server"; // 16 - show sync status const wchar_t kNTPShownSections[] = L"ntp.shown_sections"; +// Whether the user has first run the app launcher. +const wchar_t kNTPAppLauncherFirstRun[] = L"ntp.app_launcher_first_run"; + // This pref is used for migrating the prefs for the NTP const wchar_t kNTPPrefVersion[] = L"ntp.pref_version"; |