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 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1434 // renderer's in-memory cache of objects. | 1434 // renderer's in-memory cache of objects. |
1435 const char kMemoryCacheSize[] = "renderer.memory_cache.size"; | 1435 const char kMemoryCacheSize[] = "renderer.memory_cache.size"; |
1436 | 1436 |
1437 // String which specifies where to download files to by default. | 1437 // String which specifies where to download files to by default. |
1438 const char kDownloadDefaultDirectory[] = "download.default_directory"; | 1438 const char kDownloadDefaultDirectory[] = "download.default_directory"; |
1439 | 1439 |
1440 // Boolean that records if the download directory was changed by an | 1440 // Boolean that records if the download directory was changed by an |
1441 // upgrade a unsafe location to a safe location. | 1441 // upgrade a unsafe location to a safe location. |
1442 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; | 1442 const char kDownloadDirUpgraded[] = "download.directory_upgrade"; |
1443 | 1443 |
| 1444 #if defined(OS_WIN) |
| 1445 // Whether downloaded PDFs should be opened in Adobe Acrobat Reader. |
| 1446 const char kOpenPdfDownloadInAdobeReader[] = |
| 1447 "download.open_pdf_in_adobe_reader"; |
| 1448 #endif |
| 1449 |
1444 // String which specifies where to save html files to by default. | 1450 // String which specifies where to save html files to by default. |
1445 const char kSaveFileDefaultDirectory[] = "savefile.default_directory"; | 1451 const char kSaveFileDefaultDirectory[] = "savefile.default_directory"; |
1446 | 1452 |
1447 // The type used to save the page. See the enum SavePackage::SavePackageType in | 1453 // The type used to save the page. See the enum SavePackage::SavePackageType in |
1448 // the chrome/browser/download/save_package.h for the possible values. | 1454 // the chrome/browser/download/save_package.h for the possible values. |
1449 const char kSaveFileType[] = "savefile.type"; | 1455 const char kSaveFileType[] = "savefile.type"; |
1450 | 1456 |
1451 // String which specifies the last directory that was chosen for uploading | 1457 // String which specifies the last directory that was chosen for uploading |
1452 // or opening a file. | 1458 // or opening a file. |
1453 const char kSelectFileLastDirectory[] = "selectfile.last_directory"; | 1459 const char kSelectFileLastDirectory[] = "selectfile.last_directory"; |
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2330 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2336 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2331 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2337 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2332 // title or an empty string if the bookmark node was removed. | 2338 // title or an empty string if the bookmark node was removed. |
2333 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2339 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2334 #endif | 2340 #endif |
2335 | 2341 |
2336 // Whether DNS Quick Check is disabled in proxy resolution. | 2342 // Whether DNS Quick Check is disabled in proxy resolution. |
2337 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2343 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2338 | 2344 |
2339 } // namespace prefs | 2345 } // namespace prefs |
OLD | NEW |