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

Unified Diff: chrome/browser/chromeos/file_system_provider/operations/get_actions.cc

Issue 1829783002: [Extensions] Convert APIs to use movable types [5] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/chromeos/file_system_provider/operations/get_actions.cc
diff --git a/chrome/browser/chromeos/file_system_provider/operations/get_actions.cc b/chrome/browser/chromeos/file_system_provider/operations/get_actions.cc
index 5c61877ad3b916da0741658ad5898d73248979fe..aa16327e917c55bf30a25dbeba5da742642d9f4f 100644
--- a/chrome/browser/chromeos/file_system_provider/operations/get_actions.cc
+++ b/chrome/browser/chromeos/file_system_provider/operations/get_actions.cc
@@ -27,8 +27,8 @@ Actions ConvertRequestValueToActions(scoped_ptr<RequestValue> value) {
Actions result;
for (const auto& idl_action : params->actions) {
Action action;
- action.id = idl_action->id;
- action.title = idl_action->title.get() ? *idl_action->title : std::string();
+ action.id = idl_action.id;
+ action.title = idl_action.title.get() ? *idl_action.title : std::string();
result.push_back(action);
}

Powered by Google App Engine
This is Rietveld 408576698