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

Unified Diff: components/arc/common/intent_helper.mojom

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/common/intent_helper.mojom
diff --git a/components/arc/common/intent_helper.mojom b/components/arc/common/intent_helper.mojom
index 57754f261961347170fa4a77d9c4d17f51759688..2b60a9e2bd089d651259c53bf19fc5fc5a80d5a8 100644
--- a/components/arc/common/intent_helper.mojom
+++ b/components/arc/common/intent_helper.mojom
@@ -41,8 +41,8 @@ struct IntentFilter {
[MinVersion=10] array<PatternMatcher>? deprecated_data_scheme_specific_parts;
};
-// Describes a package that can handle a URL.
-struct UrlHandlerInfo {
+// Describes a package that can handle an intent.
+struct IntentHandlerInfo {
string name;
string package_name;
string activity_name; // A hint for retrieving the package's icon.
@@ -130,11 +130,11 @@ interface IntentHelperInstance {
// Requests a list of packages that can handle the URL.
[MinVersion=2] RequestUrlHandlerList@3(string url)
- => (array<UrlHandlerInfo> handlers);
+ => (array<IntentHandlerInfo> handlers);
// Requests a list of packages that can handle the list of files.
[MinVersion=4] RequestUrlListHandlerList@6(array<UrlWithMimeType> urls)
- => (array<UrlHandlerInfo> handlers);
+ => (array<IntentHandlerInfo> handlers);
// Send an Android broadcast message to the Android package and class
// specified. Data can be sent as extras by including a JSON map string which
« no previous file with comments | « chrome/browser/chromeos/file_manager/arc_file_tasks.cc ('k') | components/arc/intent_helper/arc_intent_helper_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698