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

Unified Diff: components/arc/intent_helper/arc_intent_helper_bridge.cc

Issue 2368673002: arc: Rename UrlHandlerInfo to IntentHandlerInfo. (Closed)
Patch Set: Created 4 years, 3 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: components/arc/intent_helper/arc_intent_helper_bridge.cc
diff --git a/components/arc/intent_helper/arc_intent_helper_bridge.cc b/components/arc/intent_helper/arc_intent_helper_bridge.cc
index 74d7446cda0c0f69c96d52d81431a8af4f2b77d9..8f47daafd635c3cb3d79c2fefdc2b9ce399134d5 100644
--- a/components/arc/intent_helper/arc_intent_helper_bridge.cc
+++ b/components/arc/intent_helper/arc_intent_helper_bridge.cc
@@ -106,10 +106,10 @@ bool ArcIntentHelperBridge::IsIntentHelperPackage(
}
// static
-mojo::Array<mojom::UrlHandlerInfoPtr>
+mojo::Array<mojom::IntentHandlerInfoPtr>
ArcIntentHelperBridge::FilterOutIntentHelper(
- mojo::Array<mojom::UrlHandlerInfoPtr> handlers) {
- mojo::Array<mojom::UrlHandlerInfoPtr> handlers_filtered;
+ mojo::Array<mojom::IntentHandlerInfoPtr> handlers) {
+ mojo::Array<mojom::IntentHandlerInfoPtr> handlers_filtered;
for (auto& handler : handlers) {
if (IsIntentHelperPackage(handler->package_name.get()))
continue;

Powered by Google App Engine
This is Rietveld 408576698