| Index: chrome/browser/component_updater/component_updater_service.h
|
| diff --git a/chrome/browser/component_updater/component_updater_service.h b/chrome/browser/component_updater/component_updater_service.h
|
| index 43a083f933acdfbcd0bc34575263eb8563b85d7e..ce17de0fb95b412e323b719bd5a444dd61a8b32f 100644
|
| --- a/chrome/browser/component_updater/component_updater_service.h
|
| +++ b/chrome/browser/component_updater/component_updater_service.h
|
| @@ -11,14 +11,13 @@
|
| #include "base/version.h"
|
| #include "googleurl/src/gurl.h"
|
|
|
| -class FilePath;
|
| -
|
| namespace net {
|
| class URLRequestContextGetter;
|
| }
|
|
|
| namespace base {
|
| class DictionaryValue;
|
| +class FilePath;
|
| }
|
|
|
| // Component specific installers must derive from this class and implement
|
| @@ -36,7 +35,7 @@ class ComponentInstaller {
|
| // json dictionary and |unpack_path| contains the temporary directory
|
| // with all the unpacked CRX files.
|
| virtual bool Install(base::DictionaryValue* manifest,
|
| - const FilePath& unpack_path) = 0;
|
| + const base::FilePath& unpack_path) = 0;
|
|
|
| protected:
|
| virtual ~ComponentInstaller() {}
|
|
|