| Index: chrome/browser/net/crl_set_fetcher.cc
 | 
| diff --git a/chrome/browser/net/crl_set_fetcher.cc b/chrome/browser/net/crl_set_fetcher.cc
 | 
| index 66302850dca4ea64422ed1b5acd964994e3b7253..9c869b37e2349d335e3af4b1c29f4b9045938f40 100644
 | 
| --- a/chrome/browser/net/crl_set_fetcher.cc
 | 
| +++ b/chrome/browser/net/crl_set_fetcher.cc
 | 
| @@ -22,7 +22,7 @@ using content::BrowserThread;
 | 
|  
 | 
|  CRLSetFetcher::CRLSetFetcher() : cus_(NULL) {}
 | 
|  
 | 
| -bool CRLSetFetcher::GetCRLSetFilePath(FilePath* path) const {
 | 
| +bool CRLSetFetcher::GetCRLSetFilePath(base::FilePath* path) const {
 | 
|    bool ok = PathService::Get(chrome::DIR_USER_DATA, path);
 | 
|    if (!ok) {
 | 
|      NOTREACHED();
 | 
| @@ -47,7 +47,7 @@ void CRLSetFetcher::StartInitialLoad(ComponentUpdateService* cus) {
 | 
|  void CRLSetFetcher::DoInitialLoadFromDisk() {
 | 
|    DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
 | 
|  
 | 
| -  FilePath crl_set_file_path;
 | 
| +  base::FilePath crl_set_file_path;
 | 
|    if (!GetCRLSetFilePath(&crl_set_file_path))
 | 
|      return;
 | 
|  
 | 
| @@ -69,7 +69,7 @@ void CRLSetFetcher::DoInitialLoadFromDisk() {
 | 
|    }
 | 
|  }
 | 
|  
 | 
| -void CRLSetFetcher::LoadFromDisk(FilePath path,
 | 
| +void CRLSetFetcher::LoadFromDisk(base::FilePath path,
 | 
|                                   scoped_refptr<net::CRLSet>* out_crl_set) {
 | 
|    DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
 | 
|  
 | 
| @@ -143,11 +143,12 @@ void CRLSetFetcher::OnUpdateError(int error) {
 | 
|  }
 | 
|  
 | 
|  bool CRLSetFetcher::Install(base::DictionaryValue* manifest,
 | 
| -                            const FilePath& unpack_path) {
 | 
| +                            const base::FilePath& unpack_path) {
 | 
|    DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
 | 
|  
 | 
| -  FilePath crl_set_file_path = unpack_path.Append(FILE_PATH_LITERAL("crl-set"));
 | 
| -  FilePath save_to;
 | 
| +  base::FilePath crl_set_file_path =
 | 
| +      unpack_path.Append(FILE_PATH_LITERAL("crl-set"));
 | 
| +  base::FilePath save_to;
 | 
|    if (!GetCRLSetFilePath(&save_to))
 | 
|      return true;
 | 
|  
 | 
| 
 |