diff options
Diffstat (limited to 'win8/delegate_execute/chrome_util.h')
-rw-r--r-- | win8/delegate_execute/chrome_util.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/win8/delegate_execute/chrome_util.h b/win8/delegate_execute/chrome_util.h index 634ce6c..f65ec2f 100644 --- a/win8/delegate_execute/chrome_util.h +++ b/win8/delegate_execute/chrome_util.h @@ -7,15 +7,17 @@ #include "base/string16.h" +namespace base { class FilePath; +} namespace delegate_execute { // Finalizes a previously updated installation. -void UpdateChromeIfNeeded(const FilePath& chrome_exe); +void UpdateChromeIfNeeded(const base::FilePath& chrome_exe); // Returns the appid of the Chrome pointed to by |chrome_exe|. -string16 GetAppId(const FilePath& chrome_exe); +string16 GetAppId(const base::FilePath& chrome_exe); } // namespace delegate_execute |