| 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);
|
| }
|
|
|
|
|