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

Side by Side Diff: chrome/browser/extensions/fake_safe_browsing_database_manager.h

Issue 119963004: Manage all the testing classes for Blacklist in TestBlacklist. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_EXTENSIONS_FAKE_SAFE_BROWSING_DATABASE_MANAGER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_FAKE_SAFE_BROWSING_DATABASE_MANAGER_H_
6 #define CHROME_BROWSER_EXTENSIONS_FAKE_SAFE_BROWSING_DATABASE_MANAGER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_FAKE_SAFE_BROWSING_DATABASE_MANAGER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
(...skipping 10 matching lines...) Expand all
21 explicit FakeSafeBrowsingDatabaseManager(bool enabled); 21 explicit FakeSafeBrowsingDatabaseManager(bool enabled);
22 22
23 // Returns true if synchronously safe, false if not in which case the unsafe 23 // Returns true if synchronously safe, false if not in which case the unsafe
24 // IDs taken from |unsafe_ids_| are passed to to |client| on the current 24 // IDs taken from |unsafe_ids_| are passed to to |client| on the current
25 // message loop. 25 // message loop.
26 virtual bool CheckExtensionIDs(const std::set<std::string>& extension_ids, 26 virtual bool CheckExtensionIDs(const std::set<std::string>& extension_ids,
27 Client* client) OVERRIDE; 27 Client* client) OVERRIDE;
28 28
29 // Return |this| to chain together SetUnsafe(...).NotifyUpdate() conveniently. 29 // Return |this| to chain together SetUnsafe(...).NotifyUpdate() conveniently.
30 FakeSafeBrowsingDatabaseManager& Enable(); 30 FakeSafeBrowsingDatabaseManager& Enable();
31 FakeSafeBrowsingDatabaseManager& Disable();
31 FakeSafeBrowsingDatabaseManager& ClearUnsafe(); 32 FakeSafeBrowsingDatabaseManager& ClearUnsafe();
32 FakeSafeBrowsingDatabaseManager& SetUnsafe(const std::string& a); 33 FakeSafeBrowsingDatabaseManager& SetUnsafe(const std::string& a);
33 FakeSafeBrowsingDatabaseManager& SetUnsafe(const std::string& a, 34 FakeSafeBrowsingDatabaseManager& SetUnsafe(const std::string& a,
34 const std::string& b); 35 const std::string& b);
35 FakeSafeBrowsingDatabaseManager& SetUnsafe(const std::string& a, 36 FakeSafeBrowsingDatabaseManager& SetUnsafe(const std::string& a,
36 const std::string& b, 37 const std::string& b,
37 const std::string& c); 38 const std::string& c);
38 FakeSafeBrowsingDatabaseManager& SetUnsafe(const std::string& a, 39 FakeSafeBrowsingDatabaseManager& SetUnsafe(const std::string& a,
39 const std::string& b, 40 const std::string& b,
40 const std::string& c, 41 const std::string& c,
41 const std::string& d); 42 const std::string& d);
43 FakeSafeBrowsingDatabaseManager& AddUnsafe(const std::string& a);
44 FakeSafeBrowsingDatabaseManager& RemoveUnsafe(const std::string& a);
42 45
43 // Send the update notification. 46 // Send the update notification.
44 void NotifyUpdate(); 47 void NotifyUpdate();
45 48
46 private: 49 private:
47 virtual ~FakeSafeBrowsingDatabaseManager(); 50 virtual ~FakeSafeBrowsingDatabaseManager();
48 51
49 // Runs client->SafeBrowsingResult(result). 52 // Runs client->SafeBrowsingResult(result).
50 void OnSafeBrowsingResult(scoped_ptr<SafeBrowsingCheck> result, 53 void OnSafeBrowsingResult(scoped_ptr<SafeBrowsingCheck> result,
51 Client* client); 54 Client* client);
52 55
53 // Whether to respond to CheckExtensionIDs immediately with true (indicating 56 // Whether to respond to CheckExtensionIDs immediately with true (indicating
54 // that there is definitely no extension ID match). 57 // that there is definitely no extension ID match).
55 bool enabled_; 58 bool enabled_;
56 59
57 // The extension IDs considered unsafe. 60 // The extension IDs considered unsafe.
58 std::set<std::string> unsafe_ids_; 61 std::set<std::string> unsafe_ids_;
59 }; 62 };
60 63
61 } // namespace extensions 64 } // namespace extensions
62 65
63 #endif // CHROME_BROWSER_EXTENSIONS_FAKE_SAFE_BROWSING_DATABASE_MANAGER_H_ 66 #endif // CHROME_BROWSER_EXTENSIONS_FAKE_SAFE_BROWSING_DATABASE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698