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 the keyword | |
1431 // editor window to restore on startup. | |
1432 const char kKeywordEditorWindowPlacement[] = "keyword_editor.window_placement"; | |
1433 | |
1434 // A collection of position, size, and other data relating to the preferences | |
1435 // window to restore on startup. | |
1436 const char kPreferencesWindowPlacement[] = "preferences.window_placement"; | |
1437 | |
1438 // An integer specifying the total number of bytes to be used by the | 1430 // An integer specifying the total number of bytes to be used by the |
1439 // renderer's in-memory cache of objects. | 1431 // renderer's in-memory cache of objects. |
1440 const char kMemoryCacheSize[] = "renderer.memory_cache.size"; | 1432 const char kMemoryCacheSize[] = "renderer.memory_cache.size"; |
1441 | 1433 |
1442 // String which specifies where to download files to by default. | 1434 // String which specifies where to download files to by default. |
1443 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1435 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
1444 | 1436 |
1445 // Boolean that records if the download directory was changed by an | 1437 // Boolean that records if the download directory was changed by an |
1446 // upgrade a unsafe location to a safe location. | 1438 // upgrade a unsafe location to a safe location. |
1447 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; | 1439 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; |
(...skipping 888 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2336 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2328 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2337 #endif | 2329 #endif |
2338 | 2330 |
2339 // Whether DNS Quick Check is disabled in proxy resolution. | 2331 // Whether DNS Quick Check is disabled in proxy resolution. |
2340 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2332 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2341 | 2333 |
2342 // Whether Guest Mode is enabled within the browser. | 2334 // Whether Guest Mode is enabled within the browser. |
2343 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2335 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2344 | 2336 |
2345 } // namespace prefs | 2337 } // namespace prefs |
OLD | NEW |