| 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_REQUEST_LIMITER_H_ | 5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_LIMITER_H_ |
| 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_LIMITER_H_ | 6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_LIMITER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/gtest_prod_util.h" | 13 #include "base/gtest_prod_util.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "components/content_settings/core/common/content_settings.h" | 16 #include "components/content_settings/core/common/content_settings.h" |
| 17 #include "content/public/browser/notification_observer.h" | 17 #include "content/public/browser/notification_observer.h" |
| 18 #include "content/public/browser/notification_registrar.h" | 18 #include "content/public/browser/notification_registrar.h" |
| 19 #include "content/public/browser/web_contents_observer.h" | 19 #include "content/public/browser/web_contents_observer.h" |
| 20 | 20 |
| 21 class HostContentSettingsMap; | 21 class HostContentSettingsMap; |
| 22 class DownloadRequestInfoBarDelegate; | 22 class DownloadRequestInfoBarDelegateAndroid; |
| 23 | 23 |
| 24 namespace content { | 24 namespace content { |
| 25 class NavigationController; | 25 class NavigationController; |
| 26 class WebContents; | 26 class WebContents; |
| 27 } | 27 } |
| 28 | 28 |
| 29 // DownloadRequestLimiter is responsible for determining whether a download | 29 // DownloadRequestLimiter is responsible for determining whether a download |
| 30 // should be allowed or not. It is designed to keep pages from downloading | 30 // should be allowed or not. It is designed to keep pages from downloading |
| 31 // multiple files without user interaction. DownloadRequestLimiter is invoked | 31 // multiple files without user interaction. DownloadRequestLimiter is invoked |
| 32 // from ResourceDispatcherHost any time a download begins | 32 // from ResourceDispatcherHost any time a download begins |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 StateMap state_map_; | 238 StateMap state_map_; |
| 239 | 239 |
| 240 // Weak ptr factory used when |CanDownload| asks the delegate asynchronously | 240 // Weak ptr factory used when |CanDownload| asks the delegate asynchronously |
| 241 // about the download. | 241 // about the download. |
| 242 base::WeakPtrFactory<DownloadRequestLimiter> factory_; | 242 base::WeakPtrFactory<DownloadRequestLimiter> factory_; |
| 243 | 243 |
| 244 DISALLOW_COPY_AND_ASSIGN(DownloadRequestLimiter); | 244 DISALLOW_COPY_AND_ASSIGN(DownloadRequestLimiter); |
| 245 }; | 245 }; |
| 246 | 246 |
| 247 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_LIMITER_H_ | 247 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_LIMITER_H_ |
| OLD | NEW |