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

Unified Diff: components/arc/intent_helper/activity_icon_loader.h

Issue 2498223002: arc: enable use_new_wrapper_types for intent_helper.mojom (Closed)
Patch Set: rebase Created 4 years, 1 month 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
« no previous file with comments | « components/arc/BUILD.gn ('k') | components/arc/intent_helper/activity_icon_loader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_|.
« no previous file with comments | « components/arc/BUILD.gn ('k') | components/arc/intent_helper/activity_icon_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698