| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
| 9 | 9 |
| 10 namespace prefs { | 10 namespace prefs { |
| (...skipping 1403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1414 // window to restore on startup. | 1414 // window to restore on startup. |
| 1415 const char kBrowserWindowPlacement[] = "browser.window_placement"; | 1415 const char kBrowserWindowPlacement[] = "browser.window_placement"; |
| 1416 | 1416 |
| 1417 // Browser window placement for popup windows. | 1417 // Browser window placement for popup windows. |
| 1418 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; | 1418 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; |
| 1419 | 1419 |
| 1420 // A collection of position, size, and other data relating to the task | 1420 // A collection of position, size, and other data relating to the task |
| 1421 // manager window to restore on startup. | 1421 // manager window to restore on startup. |
| 1422 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; | 1422 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; |
| 1423 | 1423 |
| 1424 // A collection of position, size, and other data relating to app windows to |
| 1425 // restore on startup. |
| 1426 const char kAppWindowPlacement[] = "browser.app_window_placement"; |
| 1427 |
| 1424 // An integer specifying the total number of bytes to be used by the | 1428 // An integer specifying the total number of bytes to be used by the |
| 1425 // renderer's in-memory cache of objects. | 1429 // renderer's in-memory cache of objects. |
| 1426 const char kMemoryCacheSize[] = "renderer.memory_cache.size"; | 1430 const char kMemoryCacheSize[] = "renderer.memory_cache.size"; |
| 1427 | 1431 |
| 1428 // String which specifies where to download files to by default. | 1432 // String which specifies where to download files to by default. |
| 1429 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1433 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
| 1430 | 1434 |
| 1431 // Boolean that records if the download directory was changed by an | 1435 // Boolean that records if the download directory was changed by an |
| 1432 // upgrade a unsafe location to a safe location. | 1436 // upgrade a unsafe location to a safe location. |
| 1433 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; | 1437 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; |
| (...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2321 // Whether DNS Quick Check is disabled in proxy resolution. | 2325 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2322 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2326 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2323 | 2327 |
| 2324 // Whether Guest Mode is enabled within the browser. | 2328 // Whether Guest Mode is enabled within the browser. |
| 2325 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2329 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
| 2326 | 2330 |
| 2327 // Whether Adding a new Person is enabled within the user manager. | 2331 // Whether Adding a new Person is enabled within the user manager. |
| 2328 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; | 2332 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; |
| 2329 | 2333 |
| 2330 } // namespace prefs | 2334 } // namespace prefs |
| OLD | NEW |