| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 const wchar_t kPrintingPageHeaderLeft[] = L"printing.page.header.left"; | 243 const wchar_t kPrintingPageHeaderLeft[] = L"printing.page.header.left"; |
| 244 const wchar_t kPrintingPageHeaderCenter[] = L"printing.page.header.center"; | 244 const wchar_t kPrintingPageHeaderCenter[] = L"printing.page.header.center"; |
| 245 const wchar_t kPrintingPageHeaderRight[] = L"printing.page.header.right"; | 245 const wchar_t kPrintingPageHeaderRight[] = L"printing.page.header.right"; |
| 246 const wchar_t kPrintingPageFooterLeft[] = L"printing.page.footer.left"; | 246 const wchar_t kPrintingPageFooterLeft[] = L"printing.page.footer.left"; |
| 247 const wchar_t kPrintingPageFooterCenter[] = L"printing.page.footer.center"; | 247 const wchar_t kPrintingPageFooterCenter[] = L"printing.page.footer.center"; |
| 248 const wchar_t kPrintingPageFooterRight[] = L"printing.page.footer.right"; | 248 const wchar_t kPrintingPageFooterRight[] = L"printing.page.footer.right"; |
| 249 const wchar_t kCurrentThemeID[] = L"extensions.theme.id"; | 249 const wchar_t kCurrentThemeID[] = L"extensions.theme.id"; |
| 250 const wchar_t kCurrentThemeImages[] = L"extensions.theme.images"; | 250 const wchar_t kCurrentThemeImages[] = L"extensions.theme.images"; |
| 251 const wchar_t kCurrentThemeColors[] = L"extensions.theme.colors"; | 251 const wchar_t kCurrentThemeColors[] = L"extensions.theme.colors"; |
| 252 const wchar_t kCurrentThemeTints[] = L"extensions.theme.tints"; | 252 const wchar_t kCurrentThemeTints[] = L"extensions.theme.tints"; |
| 253 const wchar_t kCurrentThemeDisplayProperties[] = |
| 254 L"extensions.theme.display_properties"; |
| 253 | 255 |
| 254 // Boolean that indicates whether we should check if we are the default browser | 256 // Boolean that indicates whether we should check if we are the default browser |
| 255 // on start-up. | 257 // on start-up. |
| 256 const wchar_t kCheckDefaultBrowser[] = L"browser.check_default_browser"; | 258 const wchar_t kCheckDefaultBrowser[] = L"browser.check_default_browser"; |
| 257 | 259 |
| 258 // *************** LOCAL STATE *************** | 260 // *************** LOCAL STATE *************** |
| 259 // These are attached to the machine/installation | 261 // These are attached to the machine/installation |
| 260 | 262 |
| 261 // List of profiles that the app knows about from last run. | 263 // List of profiles that the app knows about from last run. |
| 262 const wchar_t kAvailableProfiles[] = L"profiles.available"; | 264 const wchar_t kAvailableProfiles[] = L"profiles.available"; |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; | 509 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; |
| 508 | 510 |
| 509 // Whether Extensions or User Scripts are enabled. | 511 // Whether Extensions or User Scripts are enabled. |
| 510 const wchar_t kEnableExtensions[] = L"extensions.enabled"; | 512 const wchar_t kEnableExtensions[] = L"extensions.enabled"; |
| 511 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; | 513 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; |
| 512 | 514 |
| 513 // New Tab Page URLs that should not be shown as most visited thumbnails. | 515 // New Tab Page URLs that should not be shown as most visited thumbnails. |
| 514 const wchar_t kNTPMostVisitedURLsBlacklist[] = L"ntp.most_visited_blacklist"; | 516 const wchar_t kNTPMostVisitedURLsBlacklist[] = L"ntp.most_visited_blacklist"; |
| 515 | 517 |
| 516 } // namespace prefs | 518 } // namespace prefs |
| OLD | NEW |