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

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: Remove an unnecessary dependency in web_cache.gypi. 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 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 // 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
1428 // String which specifies where to download files to by default. 1424 // String which specifies where to download files to by default.
1429 const char kDownloadDefaultDirectory[] = "download.default_directory"; 1425 const char kDownloadDefaultDirectory[] = "download.default_directory";
1430 1426
1431 // Boolean that records if the download directory was changed by an 1427 // Boolean that records if the download directory was changed by an
1432 // upgrade a unsafe location to a safe location. 1428 // upgrade a unsafe location to a safe location.
1433 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; 1429 const char kDownloadDirUpgraded[] = "download.directory_upgrade";
1434 1430
1435 #if defined(OS_WIN) 1431 #if defined(OS_WIN)
1436 // Whether downloaded PDFs should be opened in Adobe Acrobat Reader. 1432 // Whether downloaded PDFs should be opened in Adobe Acrobat Reader.
1437 const char kOpenPdfDownloadInAdobeReader[] = 1433 const char kOpenPdfDownloadInAdobeReader[] =
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
2318 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2314 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2319 #endif 2315 #endif
2320 2316
2321 // Whether DNS Quick Check is disabled in proxy resolution. 2317 // Whether DNS Quick Check is disabled in proxy resolution.
2322 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2318 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2323 2319
2324 // Whether Guest Mode is enabled within the browser. 2320 // Whether Guest Mode is enabled within the browser.
2325 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; 2321 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled";
2326 2322
2327 } // namespace prefs 2323 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698