| Index: chrome/browser/chromeos/customization_document.h
|
| diff --git a/chrome/browser/chromeos/customization_document.h b/chrome/browser/chromeos/customization_document.h
|
| index 93cb59aa9ab933907b06cf495806174824abadfd..e7a06e41737107e1526fcfcf7ec544e1d564ed76 100644
|
| --- a/chrome/browser/chromeos/customization_document.h
|
| +++ b/chrome/browser/chromeos/customization_document.h
|
| @@ -16,11 +16,11 @@
|
| #include "googleurl/src/gurl.h"
|
| #include "net/url_request/url_fetcher_delegate.h"
|
|
|
| -class FilePath;
|
| class PrefServiceSimple;
|
|
|
| namespace base {
|
| class DictionaryValue;
|
| +class FilePath;
|
| }
|
|
|
| namespace net {
|
| @@ -44,7 +44,7 @@ class CustomizationDocument {
|
| protected:
|
| explicit CustomizationDocument(const std::string& accepted_version);
|
|
|
| - virtual bool LoadManifestFromFile(const FilePath& manifest_path);
|
| + virtual bool LoadManifestFromFile(const base::FilePath& manifest_path);
|
| virtual bool LoadManifestFromString(const std::string& manifest);
|
|
|
| std::string GetLocaleSpecificString(const std::string& locale,
|
| @@ -158,7 +158,7 @@ class ServicesCustomizationDocument : public CustomizationDocument,
|
| void StartFileFetch();
|
|
|
| // Executes on FILE thread and reads file to string.
|
| - void ReadFileInBackground(const FilePath& file);
|
| + void ReadFileInBackground(const base::FilePath& file);
|
|
|
| // Services customization manifest URL.
|
| GURL url_;
|
|
|