| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 // A boolean pref which turns on the mediaplayer. | 435 // A boolean pref which turns on the mediaplayer. |
| 436 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; | 436 const char kLabsMediaplayerEnabled[] = "settings.labs.mediaplayer"; |
| 437 | 437 |
| 438 // A boolean pref that turns on screen locker. | 438 // A boolean pref that turns on screen locker. |
| 439 const char kEnableScreenLock[] = "settings.enable_screen_lock"; | 439 const char kEnableScreenLock[] = "settings.enable_screen_lock"; |
| 440 | 440 |
| 441 // A boolean pref of whether to show mobile plan notifications. | 441 // A boolean pref of whether to show mobile plan notifications. |
| 442 const char kShowPlanNotifications[] = | 442 const char kShowPlanNotifications[] = |
| 443 "settings.internet.mobile.show_plan_notifications"; | 443 "settings.internet.mobile.show_plan_notifications"; |
| 444 | 444 |
| 445 // A boolean pref to initially mute volume if true. |
| 446 const char kAudioMute[] = "settings.audio.mute"; |
| 447 |
| 448 // A double pref to set initial volume. |
| 449 const char kAudioVolume[] = "settings.audio.volume"; |
| 450 |
| 445 #endif // defined(OS_CHROMEOS) | 451 #endif // defined(OS_CHROMEOS) |
| 446 | 452 |
| 447 // The disabled messages in IPC logging. | 453 // The disabled messages in IPC logging. |
| 448 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; | 454 const char kIpcDisabledMessages[] = "ipc_log_disabled_messages"; |
| 449 | 455 |
| 450 // A boolean pref set to true if a Home button to open the Home pages should be | 456 // A boolean pref set to true if a Home button to open the Home pages should be |
| 451 // visible on the toolbar. | 457 // visible on the toolbar. |
| 452 const char kShowHomeButton[] = "browser.show_home_button"; | 458 const char kShowHomeButton[] = "browser.show_home_button"; |
| 453 | 459 |
| 454 // A boolean pref set to true if the Page and Options menu buttons should be | 460 // A boolean pref set to true if the Page and Options menu buttons should be |
| (...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1163 const char kManagedDefaultPluginsSetting[] = | 1169 const char kManagedDefaultPluginsSetting[] = |
| 1164 "profile.managed_default_content_settings.plugins"; | 1170 "profile.managed_default_content_settings.plugins"; |
| 1165 const char kManagedDefaultPopupsSetting[] = | 1171 const char kManagedDefaultPopupsSetting[] = |
| 1166 "profile.managed_default_content_settings.popups"; | 1172 "profile.managed_default_content_settings.popups"; |
| 1167 | 1173 |
| 1168 // Dictionary for storing the set of known background pages (keys are extension | 1174 // Dictionary for storing the set of known background pages (keys are extension |
| 1169 // IDs of background page owners, value is a boolean that is true if the user | 1175 // IDs of background page owners, value is a boolean that is true if the user |
| 1170 // needs to acknowledge this page. | 1176 // needs to acknowledge this page. |
| 1171 const char kKnownBackgroundPages[] = "background_pages.known"; | 1177 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1172 } // namespace prefs | 1178 } // namespace prefs |
| OLD | NEW |