Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Unified Diff: chrome_frame/utils.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome_frame/test_utils.h ('k') | chromeos/chromeos_test_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/utils.h
diff --git a/chrome_frame/utils.h b/chrome_frame/utils.h
index 22045716301136345ae6215be799f4000797fd39..29084db98d1e23c4689caded1e700a9e0ecc9a7d 100644
--- a/chrome_frame/utils.h
+++ b/chrome_frame/utils.h
@@ -20,12 +20,15 @@
#include "googleurl/src/gurl.h"
#include "ui/gfx/rect.h"
-class FilePath;
class RegistryListPreferencesHolder;
interface IBrowserService;
interface IWebBrowser2;
struct ContextMenuModel;
+namespace base {
+class FilePath;
+}
+
// utils.h : Various utility functions and classes
extern const char kGCFProtocol[];
@@ -207,7 +210,7 @@ IEVersion GetIEVersion();
// hosted. Returns 0 if the current process is not IE or any other error occurs.
uint32 GetIEMajorVersion();
-FilePath GetIETemporaryFilesFolder();
+base::FilePath GetIETemporaryFilesFolder();
// Retrieves the file version from a module handle without extra round trips
// to the disk (as happens with the regular GetFileVersionInfo API).
@@ -601,6 +604,6 @@ bool IncreaseWinInetConnections(DWORD connections);
// Sets |profile_path| to the path for the Chrome Frame |profile_name|
// profile.
void GetChromeFrameProfilePath(const string16& profile_name,
- FilePath* profile_path);
+ base::FilePath* profile_path);
#endif // CHROME_FRAME_UTILS_H_
« no previous file with comments | « chrome_frame/test_utils.h ('k') | chromeos/chromeos_test_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698