| Index: chrome/browser/net/crl_set_fetcher.h
|
| diff --git a/chrome/browser/net/crl_set_fetcher.h b/chrome/browser/net/crl_set_fetcher.h
|
| index 86dd8ee3b0c77506a75514f9e98dcc63e4315414..8bcca1ff0214861361f0c49dca4935c864232f7d 100644
|
| --- a/chrome/browser/net/crl_set_fetcher.h
|
| +++ b/chrome/browser/net/crl_set_fetcher.h
|
| @@ -11,10 +11,9 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "chrome/browser/component_updater/component_updater_service.h"
|
|
|
| -class FilePath;
|
| -
|
| namespace base {
|
| class DictionaryValue;
|
| +class FilePath;
|
| }
|
|
|
| namespace net {
|
| @@ -33,16 +32,16 @@ class CRLSetFetcher : public ComponentInstaller,
|
| // ComponentInstaller interface
|
| virtual void OnUpdateError(int error) OVERRIDE;
|
| virtual bool Install(base::DictionaryValue* manifest,
|
| - const FilePath& unpack_path) OVERRIDE;
|
| + const base::FilePath& unpack_path) OVERRIDE;
|
|
|
| private:
|
| friend class base::RefCountedThreadSafe<CRLSetFetcher>;
|
|
|
| virtual ~CRLSetFetcher();
|
|
|
| - // GetCRLSetFilePath gets the path of the CRL set file in the user data
|
| + // GetCRLSetbase::FilePath gets the path of the CRL set file in the user data
|
| // dir.
|
| - bool GetCRLSetFilePath(FilePath* path) const;
|
| + bool GetCRLSetFilePath(base::FilePath* path) const;
|
|
|
| // DoInitialLoadFromDisk runs on the FILE thread and attempts to load a CRL
|
| // set from the user-data dir. It then registers this object as a component
|
| @@ -51,7 +50,7 @@ class CRLSetFetcher : public ComponentInstaller,
|
|
|
| // LoadFromDisk runs on the FILE thread and attempts to load a CRL set
|
| // from |load_from|.
|
| - void LoadFromDisk(FilePath load_from,
|
| + void LoadFromDisk(base::FilePath load_from,
|
| scoped_refptr<net::CRLSet>* out_crl_set);
|
|
|
| // SetCRLSetIfNewer runs on the IO thread and installs a CRL set
|
|
|