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/files/file_util.h" | 8 #include "base/files/file_util.h" |
9 #include "base/numerics/safe_conversions.h" | 9 #include "base/numerics/safe_conversions.h" |
10 #include "base/rand_util.h" | 10 #include "base/rand_util.h" |
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 } | 234 } |
235 | 235 |
236 return true; | 236 return true; |
237 } | 237 } |
238 | 238 |
239 bool CRLSetFetcher::GetInstalledFile( | 239 bool CRLSetFetcher::GetInstalledFile( |
240 const std::string& file, base::FilePath* installed_file) { | 240 const std::string& file, base::FilePath* installed_file) { |
241 return false; | 241 return false; |
242 } | 242 } |
243 | 243 |
| 244 bool CRLSetFetcher::Uninstall() { |
| 245 return false; |
| 246 } |
| 247 |
244 CRLSetFetcher::~CRLSetFetcher() {} | 248 CRLSetFetcher::~CRLSetFetcher() {} |
OLD | NEW |