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

Unified Diff: chrome/browser/net/crl_set_fetcher.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/net/chrome_network_delegate.h ('k') | chrome/browser/net/crl_set_fetcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/browser/net/chrome_network_delegate.h ('k') | chrome/browser/net/crl_set_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698