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

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

Issue 449643002: Componentize component_updater: Move over a bunch of files to the component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 #ifndef CHROME_BROWSER_NET_CRL_SET_FETCHER_H_ 5 #ifndef CHROME_BROWSER_NET_CRL_SET_FETCHER_H_
6 #define CHROME_BROWSER_NET_CRL_SET_FETCHER_H_ 6 #define CHROME_BROWSER_NET_CRL_SET_FETCHER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "chrome/browser/component_updater/component_updater_service.h" 13 #include "components/component_updater/component_updater_service.h"
14 14
15 namespace base { 15 namespace base {
16 class DictionaryValue; 16 class DictionaryValue;
17 class FilePath; 17 class FilePath;
18 } 18 }
19 19
20 namespace net { 20 namespace net {
21 class CRLSet; 21 class CRLSet;
22 } 22 }
23 23
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 base::FilePath crl_path_; 78 base::FilePath crl_path_;
79 79
80 // We keep a pointer to the current CRLSet for use on the FILE thread when 80 // We keep a pointer to the current CRLSet for use on the FILE thread when
81 // applying delta updates. 81 // applying delta updates.
82 scoped_refptr<net::CRLSet> crl_set_; 82 scoped_refptr<net::CRLSet> crl_set_;
83 83
84 DISALLOW_COPY_AND_ASSIGN(CRLSetFetcher); 84 DISALLOW_COPY_AND_ASSIGN(CRLSetFetcher);
85 }; 85 };
86 86
87 #endif // CHROME_BROWSER_NET_CRL_SET_FETCHER_H_ 87 #endif // CHROME_BROWSER_NET_CRL_SET_FETCHER_H_
OLDNEW
« no previous file with comments | « chrome/browser/component_updater/widevine_cdm_component_installer.cc ('k') | chrome/browser/net/crl_set_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698