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

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 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
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1399 matching lines...) Expand 10 before | Expand all | Expand 10 after
1410 // window to restore on startup. 1410 // window to restore on startup.
1411 const char kBrowserWindowPlacement[] = "browser.window_placement"; 1411 const char kBrowserWindowPlacement[] = "browser.window_placement";
1412 1412
1413 // Browser window placement for popup windows. 1413 // Browser window placement for popup windows.
1414 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup"; 1414 const char kBrowserWindowPlacementPopup[] = "browser.window_placement_popup";
1415 1415
1416 // A collection of position, size, and other data relating to the task 1416 // A collection of position, size, and other data relating to the task
1417 // manager window to restore on startup. 1417 // manager window to restore on startup.
1418 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement"; 1418 const char kTaskManagerWindowPlacement[] = "task_manager.window_placement";
1419 1419
1420 // A collection of position, size, and other data relating to app windows to
1421 // restore on startup.
1422 const char kAppWindowPlacement[] = "browser.app_window_placement";
1423
1424 // An integer specifying the total number of bytes to be used by the
1425 // renderer's in-memory cache of objects.
1426 const char kMemoryCacheSize[] = "renderer.memory_cache.size";
1427
1420 // String which specifies where to download files to by default. 1428 // String which specifies where to download files to by default.
1421 const char kDownloadDefaultDirectory[] = "download.default_directory"; 1429 const char kDownloadDefaultDirectory[] = "download.default_directory";
1422 1430
1423 // Boolean that records if the download directory was changed by an 1431 // Boolean that records if the download directory was changed by an
1424 // upgrade a unsafe location to a safe location. 1432 // upgrade a unsafe location to a safe location.
1425 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; 1433 const char kDownloadDirUpgraded[] = "download.directory_upgrade";
1426 1434
1427 #if defined(OS_WIN) 1435 #if defined(OS_WIN)
1428 // Whether downloaded PDFs should be opened in Adobe Acrobat Reader. 1436 // Whether downloaded PDFs should be opened in Adobe Acrobat Reader.
1429 const char kOpenPdfDownloadInAdobeReader[] = 1437 const char kOpenPdfDownloadInAdobeReader[] =
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
2313 // Whether DNS Quick Check is disabled in proxy resolution. 2321 // Whether DNS Quick Check is disabled in proxy resolution.
2314 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2322 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2315 2323
2316 // Whether Guest Mode is enabled within the browser. 2324 // Whether Guest Mode is enabled within the browser.
2317 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; 2325 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
2318 2326
2319 // Whether Adding a new Person is enabled within the user manager. 2327 // Whether Adding a new Person is enabled within the user manager.
2320 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; 2328 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled";
2321 2329
2322 } // namespace prefs 2330 } // namespace prefs
OLDNEW
« no previous file with comments | « chrome/common/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698