| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/safe_browsing_database_impl.h" | 5 #include "chrome/browser/safe_browsing/safe_browsing_database_impl.h" |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "base/sha2.h" | 10 #include "base/sha2.h" |
| (...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1206 kOnResumeHoldupMs); | 1206 kOnResumeHoldupMs); |
| 1207 } | 1207 } |
| 1208 | 1208 |
| 1209 void SafeBrowsingDatabaseImpl::OnResumeDone() { | 1209 void SafeBrowsingDatabaseImpl::OnResumeDone() { |
| 1210 disk_delay_ = kMaxThreadHoldupMs; | 1210 disk_delay_ = kMaxThreadHoldupMs; |
| 1211 } | 1211 } |
| 1212 | 1212 |
| 1213 void SafeBrowsingDatabaseImpl::SetSynchronous() { | 1213 void SafeBrowsingDatabaseImpl::SetSynchronous() { |
| 1214 asynchronous_ = false; | 1214 asynchronous_ = false; |
| 1215 } | 1215 } |
| 1216 | |
| OLD | NEW |