Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: chrome/browser/net/crl_set_fetcher.cc

Issue 321473003: Elevated install of recovery component (component update part) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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() {}
OLDNEW
« no previous file with comments | « chrome/browser/net/crl_set_fetcher.h ('k') | chrome/browser/ui/startup/startup_browser_creator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698