OLD | NEW |
---|---|
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. |
vakh (use Gerrit instead)
2017/07/07 00:23:41
this file can be left unchanged.
hkamila
2017/07/07 01:29:50
Acknowledged.
| |
4 | 4 |
5 #include "components/safe_browsing_db/database_manager.h" | 5 #include "components/safe_browsing_db/database_manager.h" |
6 | |
7 #include "base/metrics/histogram_macros.h" | 6 #include "base/metrics/histogram_macros.h" |
Jialiu Lin
2017/07/06 23:58:27
nit: please restore the deleted line.
hkamila
2017/07/07 01:29:50
Acknowledged.
| |
8 #include "components/safe_browsing_db/v4_get_hash_protocol_manager.h" | 7 #include "components/safe_browsing_db/v4_get_hash_protocol_manager.h" |
9 #include "components/safe_browsing_db/v4_protocol_manager_util.h" | 8 #include "components/safe_browsing_db/v4_protocol_manager_util.h" |
10 #include "content/public/browser/browser_thread.h" | 9 #include "content/public/browser/browser_thread.h" |
11 #include "net/url_request/url_request_context_getter.h" | 10 #include "net/url_request/url_request_context_getter.h" |
12 #include "url/gurl.h" | 11 #include "url/gurl.h" |
13 | 12 |
14 using content::BrowserThread; | 13 using content::BrowserThread; |
15 | 14 |
16 namespace safe_browsing { | 15 namespace safe_browsing { |
17 | 16 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
116 } | 115 } |
117 | 116 |
118 SafeBrowsingDatabaseManager::SafeBrowsingApiCheck::SafeBrowsingApiCheck( | 117 SafeBrowsingDatabaseManager::SafeBrowsingApiCheck::SafeBrowsingApiCheck( |
119 const GURL& url, | 118 const GURL& url, |
120 Client* client) | 119 Client* client) |
121 : url_(url), client_(client) {} | 120 : url_(url), client_(client) {} |
122 | 121 |
123 SafeBrowsingDatabaseManager::SafeBrowsingApiCheck::~SafeBrowsingApiCheck() {} | 122 SafeBrowsingDatabaseManager::SafeBrowsingApiCheck::~SafeBrowsingApiCheck() {} |
124 | 123 |
125 } // namespace safe_browsing | 124 } // namespace safe_browsing |
OLD | NEW |