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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 if (!BrowserThread::PostTask( | 205 if (!BrowserThread::PostTask( |
206 BrowserThread::IO, FROM_HERE, | 206 BrowserThread::IO, FROM_HERE, |
207 base::Bind( | 207 base::Bind( |
208 &CRLSetFetcher::SetCRLSetIfNewer, this, crl_set_))) { | 208 &CRLSetFetcher::SetCRLSetIfNewer, this, crl_set_))) { |
209 NOTREACHED(); | 209 NOTREACHED(); |
210 } | 210 } |
211 | 211 |
212 return true; | 212 return true; |
213 } | 213 } |
214 | 214 |
| 215 void CRLSetFetcher::OnInstallError( |
| 216 const component_updater::InstallerSourceSerializer& serializer) { |
| 217 } |
| 218 |
215 bool CRLSetFetcher::GetInstalledFile( | 219 bool CRLSetFetcher::GetInstalledFile( |
216 const std::string& file, base::FilePath* installed_file) { | 220 const std::string& file, base::FilePath* installed_file) { |
217 return false; | 221 return false; |
218 } | 222 } |
219 | 223 |
220 CRLSetFetcher::~CRLSetFetcher() {} | 224 CRLSetFetcher::~CRLSetFetcher() {} |
OLD | NEW |