summaryrefslogtreecommitdiffstats
path: root/chrome/browser/component_updater/component_updater_service.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/component_updater/component_updater_service.h')
-rw-r--r--chrome/browser/component_updater/component_updater_service.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/component_updater/component_updater_service.h b/chrome/browser/component_updater/component_updater_service.h
index 43a083f..ce17de0 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() {}