| 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 #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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/task.h" | |
| 14 #include "base/time.h" | 13 #include "base/time.h" |
| 15 #include "chrome/browser/component_updater/component_updater_service.h" | 14 #include "chrome/browser/component_updater/component_updater_service.h" |
| 16 | 15 |
| 17 class FilePath; | 16 class FilePath; |
| 18 | 17 |
| 19 namespace base { | 18 namespace base { |
| 20 class DictionaryValue; | 19 class DictionaryValue; |
| 21 } | 20 } |
| 22 | 21 |
| 23 namespace net { | 22 namespace net { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 ComponentUpdateService* cus_; | 63 ComponentUpdateService* cus_; |
| 65 | 64 |
| 66 // We keep a pointer to the current CRLSet for use on the FILE thread when | 65 // We keep a pointer to the current CRLSet for use on the FILE thread when |
| 67 // applying delta updates. | 66 // applying delta updates. |
| 68 scoped_refptr<net::CRLSet> crl_set_; | 67 scoped_refptr<net::CRLSet> crl_set_; |
| 69 | 68 |
| 70 DISALLOW_COPY_AND_ASSIGN(CRLSetFetcher); | 69 DISALLOW_COPY_AND_ASSIGN(CRLSetFetcher); |
| 71 }; | 70 }; |
| 72 | 71 |
| 73 #endif // CHROME_BROWSER_NET_CRL_SET_FETCHER_H_ | 72 #endif // CHROME_BROWSER_NET_CRL_SET_FETCHER_H_ |
| OLD | NEW |