| Index: components/arc/intent_helper/activity_icon_loader.h
|
| diff --git a/components/arc/intent_helper/activity_icon_loader.h b/components/arc/intent_helper/activity_icon_loader.h
|
| index a03870c065073a2a352c270eab3a7f9a3dd14f9d..c899103d404ec9d2b2c0c166fb8d8ace02f79a83 100644
|
| --- a/components/arc/intent_helper/activity_icon_loader.h
|
| +++ b/components/arc/intent_helper/activity_icon_loader.h
|
| @@ -93,11 +93,11 @@ class ActivityIconLoader : public base::RefCounted<ActivityIconLoader> {
|
| // A function called when the mojo IPC returns.
|
| void OnIconsReady(std::unique_ptr<ActivityToIconsMap> cached_result,
|
| const OnIconsReadyCallback& cb,
|
| - mojo::Array<mojom::ActivityIconPtr> icons);
|
| + std::vector<mojom::ActivityIconPtr> icons);
|
|
|
| // Resize |icons| and returns the results as ActivityToIconsMap.
|
| std::unique_ptr<ActivityToIconsMap> ResizeIcons(
|
| - mojo::Array<mojom::ActivityIconPtr> icons);
|
| + std::vector<mojom::ActivityIconPtr> icons);
|
|
|
| // A function called when ResizeIcons finishes. Append items in |result| to
|
| // |cached_icons_|.
|
|
|