Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: chrome/common/pref_names.cc

Issue 511393003: No longer register app window placement preference keys on the fly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update to ToT and fix scoped_refptr error Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
2318 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2322 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2319 #endif 2323 #endif
2320 2324
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 } // namespace prefs 2331 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698