summaryrefslogtreecommitdiffstats
path: root/chrome/installer/test/resource_updater.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/installer/test/resource_updater.h')
-rw-r--r--chrome/installer/test/resource_updater.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/installer/test/resource_updater.h b/chrome/installer/test/resource_updater.h
index dbbca9f..6d6bb9f 100644
--- a/chrome/installer/test/resource_updater.h
+++ b/chrome/installer/test/resource_updater.h
@@ -14,7 +14,9 @@
#include "base/basictypes.h"
+namespace base {
class FilePath;
+}
namespace upgrade_test {
@@ -25,12 +27,12 @@ class ResourceUpdater {
~ResourceUpdater();
// Loads |pe_image_path| in preparation for updating its resources.
- bool Initialize(const FilePath& pe_image_path);
+ bool Initialize(const base::FilePath& pe_image_path);
// Replaces the contents of the resource |name| of |type| and |language_id|
// with the contents of |input_file|, returning true on success.
bool Update(const std::wstring& name, const std::wstring& type,
- WORD language_id, const FilePath& input_file);
+ WORD language_id, const base::FilePath& input_file);
// Commits all updates to the file on disk.
bool Commit();