OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/net/crl_set_fetcher.h" | 5 #include "chrome/browser/net/crl_set_fetcher.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/debug/trace_event.h" | 8 #include "base/debug/trace_event.h" |
9 #include "base/file_util.h" | 9 #include "base/file_util.h" |
10 #include "base/numerics/safe_conversions.h" | 10 #include "base/numerics/safe_conversions.h" |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 if (!BrowserThread::PostTask( | 228 if (!BrowserThread::PostTask( |
229 BrowserThread::IO, FROM_HERE, | 229 BrowserThread::IO, FROM_HERE, |
230 base::Bind( | 230 base::Bind( |
231 &CRLSetFetcher::SetCRLSetIfNewer, this, crl_set_))) { | 231 &CRLSetFetcher::SetCRLSetIfNewer, this, crl_set_))) { |
232 NOTREACHED(); | 232 NOTREACHED(); |
233 } | 233 } |
234 | 234 |
235 return true; | 235 return true; |
236 } | 236 } |
237 | 237 |
| 238 base::FilePath CRLSetFetcher::GetBackupPath() const { |
| 239 return base::FilePath(); |
| 240 } |
| 241 |
| 242 void CRLSetFetcher::InstallExternally() { |
| 243 } |
| 244 |
238 bool CRLSetFetcher::GetInstalledFile( | 245 bool CRLSetFetcher::GetInstalledFile( |
239 const std::string& file, base::FilePath* installed_file) { | 246 const std::string& file, base::FilePath* installed_file) { |
240 return false; | 247 return false; |
241 } | 248 } |
242 | 249 |
243 CRLSetFetcher::~CRLSetFetcher() {} | 250 CRLSetFetcher::~CRLSetFetcher() {} |
OLD | NEW |