| 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 // Safe Browsing Database Manager implementation that manages a local | 5 // Safe Browsing Database Manager implementation that manages a local |
| 6 // database. This is used by Desktop Chromium. | 6 // database. This is used by Desktop Chromium. |
| 7 | 7 |
| 8 #ifndef CHROME_BROWSER_SAFE_BROWSING_LOCAL_DATABASE_MANAGER_H_ | 8 #ifndef CHROME_BROWSER_SAFE_BROWSING_LOCAL_DATABASE_MANAGER_H_ |
| 9 #define CHROME_BROWSER_SAFE_BROWSING_LOCAL_DATABASE_MANAGER_H_ | 9 #define CHROME_BROWSER_SAFE_BROWSING_LOCAL_DATABASE_MANAGER_H_ |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "base/synchronization/lock.h" | 26 #include "base/synchronization/lock.h" |
| 27 #include "base/time/time.h" | 27 #include "base/time/time.h" |
| 28 #include "chrome/browser/safe_browsing/protocol_manager.h" | 28 #include "chrome/browser/safe_browsing/protocol_manager.h" |
| 29 #include "chrome/browser/safe_browsing/safe_browsing_util.h" | 29 #include "chrome/browser/safe_browsing/safe_browsing_util.h" |
| 30 #include "components/safe_browsing_db/database_manager.h" | 30 #include "components/safe_browsing_db/database_manager.h" |
| 31 #include "components/safe_browsing_db/safe_browsing_prefs.h" | 31 #include "components/safe_browsing_db/safe_browsing_prefs.h" |
| 32 #include "components/safe_browsing_db/safebrowsing.pb.h" | 32 #include "components/safe_browsing_db/safebrowsing.pb.h" |
| 33 #include "components/safe_browsing_db/util.h" | 33 #include "components/safe_browsing_db/util.h" |
| 34 #include "url/gurl.h" | 34 #include "url/gurl.h" |
| 35 | 35 |
| 36 namespace base { | |
| 37 class SequencedTaskRunner; | |
| 38 } | |
| 39 | |
| 40 namespace net { | 36 namespace net { |
| 41 class URLRequestContextGetter; | 37 class URLRequestContextGetter; |
| 42 } | 38 } |
| 43 | 39 |
| 44 namespace safe_browsing { | 40 namespace safe_browsing { |
| 45 | 41 |
| 46 class SafeBrowsingService; | 42 class SafeBrowsingService; |
| 47 class SafeBrowsingDatabase; | 43 class SafeBrowsingDatabase; |
| 48 struct V4ProtocolConfig; | 44 struct V4ProtocolConfig; |
| 49 | 45 |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 | 372 |
| 377 // Timeout to use for safe browsing checks. | 373 // Timeout to use for safe browsing checks. |
| 378 base::TimeDelta check_timeout_; | 374 base::TimeDelta check_timeout_; |
| 379 | 375 |
| 380 DISALLOW_COPY_AND_ASSIGN(LocalSafeBrowsingDatabaseManager); | 376 DISALLOW_COPY_AND_ASSIGN(LocalSafeBrowsingDatabaseManager); |
| 381 }; // class LocalSafeBrowsingDatabaseManager | 377 }; // class LocalSafeBrowsingDatabaseManager |
| 382 | 378 |
| 383 } // namespace safe_browsing | 379 } // namespace safe_browsing |
| 384 | 380 |
| 385 #endif // CHROME_BROWSER_SAFE_BROWSING_LOCAL_DATABASE_MANAGER_H_ | 381 #endif // CHROME_BROWSER_SAFE_BROWSING_LOCAL_DATABASE_MANAGER_H_ |
| OLD | NEW |