| Index: content/renderer/gpu/actions_parser.cc
|
| diff --git a/content/renderer/gpu/actions_parser.cc b/content/renderer/gpu/actions_parser.cc
|
| index 127c565f4c0708467e16017e8236b7da55fd7ef5..650fd439639846ea2a5efb6b4cf41bf2672a0278 100644
|
| --- a/content/renderer/gpu/actions_parser.cc
|
| +++ b/content/renderer/gpu/actions_parser.cc
|
| @@ -71,7 +71,7 @@
|
|
|
| for (const auto& pointer_value : *pointer_list) {
|
| const base::DictionaryValue* pointer_actions;
|
| - if (!pointer_value.GetAsDictionary(&pointer_actions)) {
|
| + if (!pointer_value->GetAsDictionary(&pointer_actions)) {
|
| error_message_ =
|
| base::StringPrintf("pointer actions is missing or not a dictionary");
|
| return false;
|
| @@ -157,7 +157,7 @@
|
| SyntheticPointerActionListParams::ParamList param_list;
|
| for (const auto& action_value : actions) {
|
| const base::DictionaryValue* action;
|
| - if (!action_value.GetAsDictionary(&action)) {
|
| + if (!action_value->GetAsDictionary(&action)) {
|
| error_message_ = base::StringPrintf(
|
| "actions[%d].actions is missing or not a dictionary", action_index_);
|
| return false;
|
|
|