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

Side by Side Diff: chrome/browser/safe_browsing/test_database_manager.cc

Issue 1420053005: Move code in components/safe_browsing_db and chrome/browser/s_b/ under the safe_browsing namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@02_components_move
Patch Set: Remove '// namespace safe_browsing' for a small fwd decl block. Created 5 years, 1 month 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 #include "chrome/browser/safe_browsing/test_database_manager.h" 5 #include "chrome/browser/safe_browsing/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
11 #include "base/logging.h" 11 #include "base/logging.h"
12 12
13 namespace safe_browsing {
14
13 bool TestSafeBrowsingDatabaseManager::IsSupported() const { 15 bool TestSafeBrowsingDatabaseManager::IsSupported() const {
14 NOTIMPLEMENTED(); 16 NOTIMPLEMENTED();
15 return false; 17 return false;
16 } 18 }
17 19
18 bool TestSafeBrowsingDatabaseManager::ChecksAreAlwaysAsync() const { 20 bool TestSafeBrowsingDatabaseManager::ChecksAreAlwaysAsync() const {
19 NOTIMPLEMENTED(); 21 NOTIMPLEMENTED();
20 return false; 22 return false;
21 } 23 }
22 24
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 99
98 void TestSafeBrowsingDatabaseManager::CancelCheck(Client* client) { 100 void TestSafeBrowsingDatabaseManager::CancelCheck(Client* client) {
99 NOTIMPLEMENTED(); 101 NOTIMPLEMENTED();
100 } 102 }
101 103
102 void TestSafeBrowsingDatabaseManager::StartOnIOThread() { 104 void TestSafeBrowsingDatabaseManager::StartOnIOThread() {
103 } 105 }
104 106
105 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) { 107 void TestSafeBrowsingDatabaseManager::StopOnIOThread(bool shutdown) {
106 } 108 }
109
110 } // namespace safe_browsing
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/test_database_manager.h ('k') | chrome/browser/safe_browsing/threat_details.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698