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 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1420 // window to restore on startup. | 1420 // window to restore on startup. |
1421 const char kBrowserWindowPlacement[] = "browser.window_placement"; | 1421 const char kBrowserWindowPlacement[] = "browser.window_placement"; |
1422 | 1422 |
1423 // Browser window placement for popup windows. | 1423 // Browser window placement for popup windows. |
1424 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; | 1424 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; |
1425 | 1425 |
1426 // A collection of position, size, and other data relating to the task | 1426 // A collection of position, size, and other data relating to the task |
1427 // manager window to restore on startup. | 1427 // manager window to restore on startup. |
1428 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; | 1428 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; |
1429 | 1429 |
| 1430 // A collection of position, size, and other data relating to app windows to |
| 1431 // restore on startup. |
| 1432 const char kAppWindowPlacement[] = "browser.app_window_placement"; |
| 1433 |
1430 // An integer specifying the total number of bytes to be used by the | 1434 // An integer specifying the total number of bytes to be used by the |
1431 // renderer's in-memory cache of objects. | 1435 // renderer's in-memory cache of objects. |
1432 const char kMemoryCacheSize[] = "renderer.memory_cache.size"; | 1436 const char kMemoryCacheSize[] = "renderer.memory_cache.size"; |
1433 | 1437 |
1434 // String which specifies where to download files to by default. | 1438 // String which specifies where to download files to by default. |
1435 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1439 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
1436 | 1440 |
1437 // Boolean that records if the download directory was changed by an | 1441 // Boolean that records if the download directory was changed by an |
1438 // upgrade a unsafe location to a safe location. | 1442 // upgrade a unsafe location to a safe location. |
1439 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; | 1443 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; |
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2328 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2332 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2329 #endif | 2333 #endif |
2330 | 2334 |
2331 // Whether DNS Quick Check is disabled in proxy resolution. | 2335 // Whether DNS Quick Check is disabled in proxy resolution. |
2332 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2336 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2333 | 2337 |
2334 // Whether Guest Mode is enabled within the browser. | 2338 // Whether Guest Mode is enabled within the browser. |
2335 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2339 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2336 | 2340 |
2337 } // namespace prefs | 2341 } // namespace prefs |
OLD | NEW |