| 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/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "components/prefs/pref_member.h" | 14 #include "components/prefs/pref_member.h" |
| 15 | 15 |
| 16 class PrefService; | |
| 17 class Profile; | 16 class Profile; |
| 18 | 17 |
| 19 namespace content { | 18 namespace content { |
| 20 class BrowserContext; | 19 class BrowserContext; |
| 21 class DownloadManager; | 20 class DownloadManager; |
| 22 } | 21 } |
| 23 | 22 |
| 24 namespace user_prefs { | 23 namespace user_prefs { |
| 25 class PrefRegistrySyncable; | 24 class PrefRegistrySyncable; |
| 26 } | 25 } |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 | 116 |
| 118 #if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX) | 117 #if defined(OS_WIN) || defined(OS_LINUX) || defined(OS_MACOSX) |
| 119 bool should_open_pdf_in_system_reader_; | 118 bool should_open_pdf_in_system_reader_; |
| 120 bool disable_adobe_version_check_for_tests_; | 119 bool disable_adobe_version_check_for_tests_; |
| 121 #endif | 120 #endif |
| 122 | 121 |
| 123 DISALLOW_COPY_AND_ASSIGN(DownloadPrefs); | 122 DISALLOW_COPY_AND_ASSIGN(DownloadPrefs); |
| 124 }; | 123 }; |
| 125 | 124 |
| 126 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ | 125 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ |
| OLD | NEW |