| Index: components/arc/common/intent_helper.mojom
|
| diff --git a/components/arc/common/intent_helper.mojom b/components/arc/common/intent_helper.mojom
|
| index b8fb48aedae8250210fc83f4e4aacf66ca110aa7..4d7075b8f8d4c7534ae9a8082bbec941d14d954b 100644
|
| --- a/components/arc/common/intent_helper.mojom
|
| +++ b/components/arc/common/intent_helper.mojom
|
| @@ -2,7 +2,7 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
| //
|
| -// Next MinVersion: 10
|
| +// Next MinVersion: 11
|
|
|
| module arc.mojom;
|
|
|
| @@ -15,10 +15,30 @@ enum ActionType {
|
| SEND_MULTIPLE,
|
| };
|
|
|
| +[Extensible]
|
| +enum PatternType {
|
| + PATTERN_LITERAL,
|
| + PATTERN_PREFIX,
|
| + PATTERN_SIMPLE_GLOB,
|
| +};
|
| +
|
| +struct PatternMatcher {
|
| + string pattern;
|
| + PatternType type;
|
| +};
|
| +
|
| +struct AuthorityEntry {
|
| + string host;
|
| + int32 port;
|
| +};
|
| +
|
| struct IntentFilter {
|
| array<string> actions;
|
| array<string> categories;
|
| array<string> data_schemes;
|
| + [MinVersion=10]array<AuthorityEntry>? data_authorities;
|
| + [MinVersion=10]array<PatternMatcher>? data_paths;
|
| + [MinVersion=10]array<PatternMatcher>? data_scheme_specific_parts;
|
| };
|
|
|
| // Describes a package that can handle a URL.
|
|
|