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

Side by Side Diff: components/safe_browsing_db/test_database_manager.h

Issue 2926553004: Remove trailing semicolon at the end of a method definition (Closed)
Patch Set: rebase Created 3 years, 6 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 #ifndef COMPONENTS_SAFE_BROWSING_DB_TEST_DATABASE_MANAGER_H_ 5 #ifndef COMPONENTS_SAFE_BROWSING_DB_TEST_DATABASE_MANAGER_H_
6 #define COMPONENTS_SAFE_BROWSING_DB_TEST_DATABASE_MANAGER_H_ 6 #define COMPONENTS_SAFE_BROWSING_DB_TEST_DATABASE_MANAGER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 30 matching lines...) Expand all
41 safe_browsing::ThreatSource GetThreatSource() const override; 41 safe_browsing::ThreatSource GetThreatSource() const override;
42 bool IsCsdWhitelistKillSwitchOn() override; 42 bool IsCsdWhitelistKillSwitchOn() override;
43 bool IsDownloadProtectionEnabled() const override; 43 bool IsDownloadProtectionEnabled() const override;
44 bool IsMalwareKillSwitchOn() override; 44 bool IsMalwareKillSwitchOn() override;
45 bool IsSupported() const override; 45 bool IsSupported() const override;
46 void StartOnIOThread(net::URLRequestContextGetter* request_context_getter, 46 void StartOnIOThread(net::URLRequestContextGetter* request_context_getter,
47 const V4ProtocolConfig& config) override; 47 const V4ProtocolConfig& config) override;
48 void StopOnIOThread(bool shutdown) override; 48 void StopOnIOThread(bool shutdown) override;
49 49
50 protected: 50 protected:
51 ~TestSafeBrowsingDatabaseManager() override {}; 51 ~TestSafeBrowsingDatabaseManager() override {}
52 }; 52 };
53 53
54 } // namespace safe_browsing 54 } // namespace safe_browsing
55 55
56 #endif // COMPONENTS_SAFE_BROWSING_DB_TEST_DATABASE_MANAGER_H_ 56 #endif // COMPONENTS_SAFE_BROWSING_DB_TEST_DATABASE_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698