| OLD | NEW |
| 1 // Copyright (c) 2006-2008 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 |
| 11 | 11 |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 const wchar_t kBookmarkManagerPlacement[] = | 228 const wchar_t kBookmarkManagerPlacement[] = |
| 229 L"bookmark_manager.window_placement"; | 229 L"bookmark_manager.window_placement"; |
| 230 | 230 |
| 231 // Integer location of the split bar in the bookmark manager. | 231 // Integer location of the split bar in the bookmark manager. |
| 232 const wchar_t kBookmarkManagerSplitLocation[] = | 232 const wchar_t kBookmarkManagerSplitLocation[] = |
| 233 L"bookmark_manager.split_location"; | 233 L"bookmark_manager.split_location"; |
| 234 | 234 |
| 235 // Boolean pref to define the default values for using spellchecker. | 235 // Boolean pref to define the default values for using spellchecker. |
| 236 const wchar_t kEnableSpellCheck[] = L"browser.enable_spellchecking"; | 236 const wchar_t kEnableSpellCheck[] = L"browser.enable_spellchecking"; |
| 237 | 237 |
| 238 // String pref to define the default values for print overlays. |
| 239 const wchar_t kPrintingPageHeaderLeft[] = L"printing.page.header.left"; |
| 240 const wchar_t kPrintingPageHeaderCenter[] = L"printing.page.header.center"; |
| 241 const wchar_t kPrintingPageHeaderRight[] = L"printing.page.header.right"; |
| 242 const wchar_t kPrintingPageFooterLeft[] = L"printing.page.footer.left"; |
| 243 const wchar_t kPrintingPageFooterCenter[] = L"printing.page.footer.center"; |
| 244 const wchar_t kPrintingPageFooterRight[] = L"printing.page.footer.right"; |
| 245 |
| 238 // *************** LOCAL STATE *************** | 246 // *************** LOCAL STATE *************** |
| 239 // These are attached to the machine/installation | 247 // These are attached to the machine/installation |
| 240 | 248 |
| 241 // List of profiles that the app knows about from last run. | 249 // List of profiles that the app knows about from last run. |
| 242 const wchar_t kAvailableProfiles[] = L"profiles.available"; | 250 const wchar_t kAvailableProfiles[] = L"profiles.available"; |
| 243 | 251 |
| 244 // The metrics client GUID and session ID. | 252 // The metrics client GUID and session ID. |
| 245 const wchar_t kMetricsClientID[] = L"user_experience_metrics.client_id"; | 253 const wchar_t kMetricsClientID[] = L"user_experience_metrics.client_id"; |
| 246 const wchar_t kMetricsSessionID[] = L"user_experience_metrics.session_id"; | 254 const wchar_t kMetricsSessionID[] = L"user_experience_metrics.session_id"; |
| 247 | 255 |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; | 484 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; |
| 477 | 485 |
| 478 // Number of keywords. | 486 // Number of keywords. |
| 479 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; | 487 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; |
| 480 | 488 |
| 481 // Whether Extensions or User Scripts are enabled. | 489 // Whether Extensions or User Scripts are enabled. |
| 482 const wchar_t kEnableExtensions[] = L"extensions.enabled"; | 490 const wchar_t kEnableExtensions[] = L"extensions.enabled"; |
| 483 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; | 491 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; |
| 484 | 492 |
| 485 } // namespace prefs | 493 } // namespace prefs |
| OLD | NEW |