| 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 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ | 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ |
| 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ | 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/prefs/pref_member.h" | |
| 13 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 13 #include "components/prefs/pref_member.h" |
| 14 | 14 |
| 15 class PrefService; | 15 class PrefService; |
| 16 class Profile; | 16 class Profile; |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 class BrowserContext; | 19 class BrowserContext; |
| 20 class DownloadManager; | 20 class DownloadManager; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace user_prefs { | 23 namespace user_prefs { |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 | 113 |
| 114 #if defined(OS_WIN) || defined(OS_LINUX) || \ | 114 #if defined(OS_WIN) || defined(OS_LINUX) || \ |
| 115 (defined(OS_MACOSX) && !defined(OS_IOS)) | 115 (defined(OS_MACOSX) && !defined(OS_IOS)) |
| 116 bool should_open_pdf_in_system_reader_; | 116 bool should_open_pdf_in_system_reader_; |
| 117 #endif | 117 #endif |
| 118 | 118 |
| 119 DISALLOW_COPY_AND_ASSIGN(DownloadPrefs); | 119 DISALLOW_COPY_AND_ASSIGN(DownloadPrefs); |
| 120 }; | 120 }; |
| 121 | 121 |
| 122 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ | 122 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ |
| OLD | NEW |