diff options
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/pref_names.cc | 4 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index 77a6aff..aaf54cc 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -243,6 +243,10 @@ const wchar_t kPrintingPageFooterLeft[] = L"printing.page.footer.left"; const wchar_t kPrintingPageFooterCenter[] = L"printing.page.footer.center"; const wchar_t kPrintingPageFooterRight[] = L"printing.page.footer.right"; +// Boolean that indicates whether we should check if we are the default browser +// on start-up. +const wchar_t kCheckDefaultBrowser[] = L"browser.check_default_browser"; + // *************** LOCAL STATE *************** // These are attached to the machine/installation diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index a9a37ab..53385fd 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -87,6 +87,8 @@ extern const wchar_t kPrintingPageHeaderRight[]; extern const wchar_t kPrintingPageFooterLeft[]; extern const wchar_t kPrintingPageFooterCenter[]; extern const wchar_t kPrintingPageFooterRight[]; +extern const wchar_t kCheckDefaultBrowser[]; + // Local state extern const wchar_t kAvailableProfiles[]; |