diff options
author | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-19 23:50:37 +0000 |
---|---|---|
committer | glen@chromium.org <glen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-19 23:50:37 +0000 |
commit | b1390d09433a31fc794dee4b20a37c999476ddcf (patch) | |
tree | 6e2577b48c70f5dbe4505dd31d06f97acf658e55 /chrome/common | |
parent | 06416f79b380fe5378bc3fd305e89c762c8408ea (diff) | |
download | chromium_src-b1390d09433a31fc794dee4b20a37c999476ddcf.zip chromium_src-b1390d09433a31fc794dee4b20a37c999476ddcf.tar.gz chromium_src-b1390d09433a31fc794dee4b20a37c999476ddcf.tar.bz2 |
Commit for Miranda.
http://codereview.chromium.org/115265
Original text:
"""
This addresses 3 of the 4 issues described in Issue 9223:
1) Creates a new streamlined bubble with less text.
2) Incorporates a close [x].
3) Driven by configuration option in master_preferences file; this alternate
bubble will be used only if "oem_bubble": true is set.
Requested longer linger time feature will involve mucking with the focus
manager; this change will be uploaded separately.
BUG=9223
TEST=Add "oem_bubble": true to master_preferences file. Run chrome with
--first-run option. Alternate, smaller OEM bubble should appear over the Chrome
browser in the place of the standard first-run bubble.
"""
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/pref_names.cc | 6 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index f414d27..9dd08c8 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -462,6 +462,12 @@ const wchar_t kOptionsWindowLastTabIndex[] = L"options_window.last_tab_index"; // This preference is only registered by the first-run procedure. const wchar_t kShouldShowFirstRunBubble[] = L"show-first-run-bubble"; +// The mere fact that this pref is registered signals that we should show the +// smaller OEM First Run Search Information bubble when the first +// browser window appears. +// This preference is only registered by the first-run procedure. +const wchar_t kShouldUseOEMFirstRunBubble[] = L"show-OEM-first-run-bubble"; + // Signal that we should show the welcome page when we launch Chrome. const wchar_t kShouldShowWelcomePage[] = L"show-welcome-page"; diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index 83fdfd1..5979204 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -166,6 +166,7 @@ extern const wchar_t kSafeBrowsingWrappedKey[]; extern const wchar_t kOptionsWindowLastTabIndex[]; extern const wchar_t kShouldShowFirstRunBubble[]; +extern const wchar_t kShouldUseOEMFirstRunBubble[]; extern const wchar_t kShouldShowWelcomePage[]; extern const wchar_t kLastKnownGoogleURL[]; |