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

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

Issue 1865763002: Rename download_protection_enabled to IsDownloadProtectionEnabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « components/safe_browsing_db/test_database_manager.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "components/safe_browsing_db/test_database_manager.h" 5 #include "components/safe_browsing_db/test_database_manager.h"
6 6
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 22 matching lines...) Expand all
33 content::ResourceType resource_type) const { 33 content::ResourceType resource_type) const {
34 NOTIMPLEMENTED(); 34 NOTIMPLEMENTED();
35 return false; 35 return false;
36 } 36 }
37 37
38 bool TestSafeBrowsingDatabaseManager::CanCheckUrl(const GURL& url) const { 38 bool TestSafeBrowsingDatabaseManager::CanCheckUrl(const GURL& url) const {
39 NOTIMPLEMENTED(); 39 NOTIMPLEMENTED();
40 return false; 40 return false;
41 } 41 }
42 42
43 bool TestSafeBrowsingDatabaseManager::download_protection_enabled() const { 43 bool TestSafeBrowsingDatabaseManager::IsDownloadProtectionEnabled() const {
44 NOTIMPLEMENTED(); 44 NOTIMPLEMENTED();
45 return false; 45 return false;
46 } 46 }
47 47
48 bool TestSafeBrowsingDatabaseManager::CheckBrowseUrl(const GURL& url, 48 bool TestSafeBrowsingDatabaseManager::CheckBrowseUrl(const GURL& url,
49 Client* client) { 49 Client* client) {
50 NOTIMPLEMENTED(); 50 NOTIMPLEMENTED();
51 return true; 51 return true;
52 } 52 }
53 53
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 127
128 void TestSafeBrowsingDatabaseManager::StartOnIOThread( 128 void TestSafeBrowsingDatabaseManager::StartOnIOThread(
129 net::URLRequestContextGetter* request_context_getter, 129 net::URLRequestContextGetter* request_context_getter,
130 const V4ProtocolConfig& config) { 130 const V4ProtocolConfig& config) {
131 } 131 }
132 132
133 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) { 133 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) {
134 } 134 }
135 135
136 } // namespace safe_browsing 136 } // namespace safe_browsing
OLDNEW
« no previous file with comments | « components/safe_browsing_db/test_database_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698