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

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

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 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 07de8dd8ab49220ce9338f0624c21719ff615ed7..0563e0f225e12c03aebf1ddb42ed563e327473d9 100644
--- a/chrome/browser/extensions/api/file_system/file_system_api.cc
+++ b/chrome/browser/extensions/api/file_system/file_system_api.cc
@@ -490,7 +490,7 @@ ExtensionFunction::ResponseAction FileSystemGetDisplayPathFunction::Run() {
file_path = path_util::PrettifyPath(file_path);
return RespondNow(
- OneArgument(base::MakeUnique<base::StringValue>(file_path.value())));
+ OneArgument(base::MakeUnique<base::Value>(file_path.value())));
}
FileSystemEntryFunction::FileSystemEntryFunction()

Powered by Google App Engine
This is Rietveld 408576698