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

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

Issue 665163005: Add option to open PDFs in system viewer to OS X and Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unify the various identifiers for less #ifdefing. Created 6 years, 1 month 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 // Constants for the names of various preferences, for easier changing. 5 // Constants for the names of various preferences, for easier changing.
6 6
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ 7 #ifndef CHROME_COMMON_PREF_NAMES_H_
8 #define CHROME_COMMON_PREF_NAMES_H_ 8 #define CHROME_COMMON_PREF_NAMES_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 476
477 extern const char kBrowserWindowPlacement[]; 477 extern const char kBrowserWindowPlacement[];
478 extern const char kBrowserWindowPlacementPopup[]; 478 extern const char kBrowserWindowPlacementPopup[];
479 extern const char kTaskManagerWindowPlacement[]; 479 extern const char kTaskManagerWindowPlacement[];
480 extern const char kAppWindowPlacement[]; 480 extern const char kAppWindowPlacement[];
481 extern const char kMemoryCacheSize[]; 481 extern const char kMemoryCacheSize[];
482 482
483 extern const char kDownloadDefaultDirectory[]; 483 extern const char kDownloadDefaultDirectory[];
484 extern const char kDownloadExtensionsToOpen[]; 484 extern const char kDownloadExtensionsToOpen[];
485 extern const char kDownloadDirUpgraded[]; 485 extern const char kDownloadDirUpgraded[];
486 #if defined(OS_WIN) 486 #if defined(OS_WIN) || defined(OS_LINUX) || \
487 extern const char kOpenPdfDownloadInAdobeReader[]; 487 (defined(OS_MACOSX) && !defined(OS_IOS))
488 extern const char kOpenPdfDownloadInSystemReader[];
488 #endif 489 #endif
489 490
490 extern const char kSaveFileDefaultDirectory[]; 491 extern const char kSaveFileDefaultDirectory[];
491 extern const char kSaveFileType[]; 492 extern const char kSaveFileType[];
492 493
493 extern const char kAllowFileSelectionDialogs[]; 494 extern const char kAllowFileSelectionDialogs[];
494 extern const char kDefaultTasksByMimeType[]; 495 extern const char kDefaultTasksByMimeType[];
495 extern const char kDefaultTasksBySuffix[]; 496 extern const char kDefaultTasksBySuffix[];
496 497
497 extern const char kSelectFileLastDirectory[]; 498 extern const char kSelectFileLastDirectory[];
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 820
820 extern const char kQuickCheckEnabled[]; 821 extern const char kQuickCheckEnabled[];
821 extern const char kBrowserGuestModeEnabled[]; 822 extern const char kBrowserGuestModeEnabled[];
822 extern const char kBrowserAddPersonEnabled[]; 823 extern const char kBrowserAddPersonEnabled[];
823 824
824 extern const char kEasyUnlockHardlockState[]; 825 extern const char kEasyUnlockHardlockState[];
825 826
826 } // namespace prefs 827 } // namespace prefs
827 828
828 #endif // CHROME_COMMON_PREF_NAMES_H_ 829 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698