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

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

Issue 528363002: Move webCacheManager to //components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
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 // An integer specifying the total number of bytes to be used by the
1421 // renderer's in-memory cache of objects.
1422 const char kMemoryCacheSize[] = "renderer.memory_cache.size";
1423
1424 // String which specifies where to download files to by default. 1420 // String which specifies where to download files to by default.
1425 const char kDownloadDefaultDirectory[] = "download.default_directory"; 1421 const char kDownloadDefaultDirectory[] = "download.default_directory";
1426 1422
1427 // Boolean that records if the download directory was changed by an 1423 // Boolean that records if the download directory was changed by an
1428 // upgrade a unsafe location to a safe location. 1424 // upgrade a unsafe location to a safe location.
1429 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; 1425 const char kDownloadDirUpgraded[] = "download.directory_upgrade";
1430 1426
1431 #if defined(OS_WIN) 1427 #if defined(OS_WIN)
1432 // Whether downloaded PDFs should be opened in Adobe Acrobat Reader. 1428 // Whether downloaded PDFs should be opened in Adobe Acrobat Reader.
1433 const char kOpenPdfDownloadInAdobeReader[] = 1429 const char kOpenPdfDownloadInAdobeReader[] =
(...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
2317 // Whether DNS Quick Check is disabled in proxy resolution. 2313 // Whether DNS Quick Check is disabled in proxy resolution.
2318 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2314 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2319 2315
2320 // Whether Guest Mode is enabled within the browser. 2316 // Whether Guest Mode is enabled within the browser.
2321 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; 2317 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
2322 2318
2323 // Whether Adding a new Person is enabled within the user manager. 2319 // Whether Adding a new Person is enabled within the user manager.
2324 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; 2320 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled";
2325 2321
2326 } // namespace prefs 2322 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698