Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(553)

Side by Side Diff: chrome/browser/safe_browsing/remote_database_manager.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 // Implementation of the SafeBrowsingDatabaseManager that sends URLs 5 // Implementation of the SafeBrowsingDatabaseManager that sends URLs
6 // via IPC to a database that chromium doesn't manage locally. 6 // via IPC to a database that chromium doesn't manage locally.
7 7
8 #ifndef CHROME_BROWSER_SAFE_BROWSING_REMOTE_DATABASE_MANAGER_H_ 8 #ifndef CHROME_BROWSER_SAFE_BROWSING_REMOTE_DATABASE_MANAGER_H_
9 #define CHROME_BROWSER_SAFE_BROWSING_REMOTE_DATABASE_MANAGER_H_ 9 #define CHROME_BROWSER_SAFE_BROWSING_REMOTE_DATABASE_MANAGER_H_
10 10
11 #include <set> 11 #include <set>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/macros.h"
15 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
16 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
17 #include "chrome/browser/safe_browsing/database_manager.h" 18 #include "chrome/browser/safe_browsing/database_manager.h"
18 #include "url/gurl.h" 19 #include "url/gurl.h"
19 20
20 namespace safe_browsing { 21 namespace safe_browsing {
21 22
22 // An implementation that proxies requests to a service outside of Chromium. 23 // An implementation that proxies requests to a service outside of Chromium.
23 // Does not manage a local database. 24 // Does not manage a local database.
24 class RemoteSafeBrowsingDatabaseManager : public SafeBrowsingDatabaseManager { 25 class RemoteSafeBrowsingDatabaseManager : public SafeBrowsingDatabaseManager {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 71
71 std::set<content::ResourceType> resource_types_to_check_; 72 std::set<content::ResourceType> resource_types_to_check_;
72 73
73 friend class base::RefCountedThreadSafe<RemoteSafeBrowsingDatabaseManager>; 74 friend class base::RefCountedThreadSafe<RemoteSafeBrowsingDatabaseManager>;
74 DISALLOW_COPY_AND_ASSIGN(RemoteSafeBrowsingDatabaseManager); 75 DISALLOW_COPY_AND_ASSIGN(RemoteSafeBrowsingDatabaseManager);
75 }; // class RemoteSafeBrowsingDatabaseManager 76 }; // class RemoteSafeBrowsingDatabaseManager
76 77
77 } // namespace safe_browsing 78 } // namespace safe_browsing
78 79
79 #endif // CHROME_BROWSER_SAFE_BROWSING_REMOTE_DATABASE_MANAGER_H_ 80 #endif // CHROME_BROWSER_SAFE_BROWSING_REMOTE_DATABASE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698