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

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: Initial upload Created 6 years, 6 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
« no previous file with comments | « chrome/browser/net/crl_set_fetcher.h ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
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() {}
OLDNEW
« no previous file with comments | « chrome/browser/net/crl_set_fetcher.h ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698