| 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/prefs/public/pref_member.h" | 11 #include "base/prefs/pref_member.h" |
| 12 | 12 |
| 13 class PrefRegistrySyncable; | 13 class PrefRegistrySyncable; |
| 14 class PrefService; | 14 class PrefService; |
| 15 class Profile; | 15 class Profile; |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 class BrowserContext; | 18 class BrowserContext; |
| 19 class DownloadManager; | 19 class DownloadManager; |
| 20 } | 20 } |
| 21 | 21 |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 const base::FilePath::StringType& b) const; | 76 const base::FilePath::StringType& b) const; |
| 77 }; | 77 }; |
| 78 typedef std::set<base::FilePath::StringType, | 78 typedef std::set<base::FilePath::StringType, |
| 79 AutoOpenCompareFunctor> AutoOpenSet; | 79 AutoOpenCompareFunctor> AutoOpenSet; |
| 80 AutoOpenSet auto_open_; | 80 AutoOpenSet auto_open_; |
| 81 | 81 |
| 82 DISALLOW_COPY_AND_ASSIGN(DownloadPrefs); | 82 DISALLOW_COPY_AND_ASSIGN(DownloadPrefs); |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ | 85 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_PREFS_H_ |
| OLD | NEW |