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

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

Issue 9114020: Remove task.h and finish base::Bind() migration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix typo Created 8 years, 11 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 #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
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_
OLDNEW
« no previous file with comments | « chrome/browser/net/cookie_policy_browsertest.cc ('k') | chrome/browser/net/net_pref_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698