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

Unified Diff: chrome/browser/extensions/api/file_system/file_system_api.cc

Issue 13145003: Rewrite std::string("") to std::string(), Linux edition. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Ugh Created 7 years, 8 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
Index: chrome/browser/extensions/api/file_system/file_system_api.cc
diff --git a/chrome/browser/extensions/api/file_system/file_system_api.cc b/chrome/browser/extensions/api/file_system/file_system_api.cc
index 3bb588ae564d0d71af24d7dfb7a37850594c7dda..e849e3cc262048643bc259c6f6b24011c7ba7206 100644
--- a/chrome/browser/extensions/api/file_system/file_system_api.cc
+++ b/chrome/browser/extensions/api/file_system/file_system_api.cc
@@ -435,8 +435,11 @@ class FileSystemChooseEntryFunction::FilePicker
select_file_dialog_->SelectFile(picker_type,
string16(),
suggested_name,
- &file_type_info, 0, FILE_PATH_LITERAL(""),
- owning_window, NULL);
+ &file_type_info,
+ 0,
+ base::FilePath::StringType(),
+ owning_window,
+ NULL);
}
virtual ~FilePicker() {}

Powered by Google App Engine
This is Rietveld 408576698