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

Unified Diff: win8/metro_driver/file_picker_ash.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 | « win8/delegate_execute/delegate_execute_util_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/metro_driver/file_picker_ash.h
diff --git a/win8/metro_driver/file_picker_ash.h b/win8/metro_driver/file_picker_ash.h
index ec8cf6ae12e997603048386518ebef6c97d16a25..4426f5cc7431a8d079c8a4e4c4e1a5027f4b0878 100644
--- a/win8/metro_driver/file_picker_ash.h
+++ b/win8/metro_driver/file_picker_ash.h
@@ -10,10 +10,13 @@
#include "base/compiler_specific.h"
#include "base/string16.h"
-class FilePath;
class ChromeAppViewAsh;
struct MetroViewerHostMsg_SaveAsDialogParams;
+namespace base {
+class FilePath;
+}
+
// Base class for the file pickers.
class FilePickerSessionBase {
public:
@@ -79,7 +82,7 @@ class OpenFilePickerSession : public FilePickerSessionBase {
const string16& default_path,
bool allow_multi_select);
- const std::vector<FilePath>& filenames() const {
+ const std::vector<base::FilePath>& filenames() const {
return filenames_;
}
@@ -113,7 +116,7 @@ class OpenFilePickerSession : public FilePickerSessionBase {
bool allow_multi_select_;
// If multi select is true then this member contains the list of filenames
// to be returned back.
- std::vector<FilePath> filenames_;
+ std::vector<base::FilePath> filenames_;
DISALLOW_COPY_AND_ASSIGN(OpenFilePickerSession);
};
« no previous file with comments | « win8/delegate_execute/delegate_execute_util_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698