Chromium Code Reviews| 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 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1148 "profile.managed_default_content_settings.javascript"; | 1148 "profile.managed_default_content_settings.javascript"; |
| 1149 const char kManagedDefaultPluginsSetting[] = | 1149 const char kManagedDefaultPluginsSetting[] = |
| 1150 "profile.managed_default_content_settings.plugins"; | 1150 "profile.managed_default_content_settings.plugins"; |
| 1151 const char kManagedDefaultPopupsSetting[] = | 1151 const char kManagedDefaultPopupsSetting[] = |
| 1152 "profile.managed_default_content_settings.popups"; | 1152 "profile.managed_default_content_settings.popups"; |
| 1153 | 1153 |
| 1154 // Dictionary for storing the set of known background pages (keys are extension | 1154 // Dictionary for storing the set of known background pages (keys are extension |
| 1155 // IDs of background page owners, value is a boolean that is true if the user | 1155 // IDs of background page owners, value is a boolean that is true if the user |
| 1156 // needs to acknowledge this page. | 1156 // needs to acknowledge this page. |
| 1157 const char kKnownBackgroundPages[] = "background_pages.known"; | 1157 const char kKnownBackgroundPages[] = "background_pages.known"; |
| 1158 | |
| 1159 // Preference to disable 3D APIs (WebGL, Pepper 3D). | |
| 1160 const char kDisable3DAPIs[] = "disable_3d_apis"; | |
|
Mattias Nissler (ping if slow)
2010/12/20 12:25:36
This file has several sections, please move up int
Ken Russell (switch to Gerrit)
2010/12/20 20:34:33
Done.
| |
| 1158 } // namespace prefs | 1161 } // namespace prefs |
| OLD | NEW |