Commit 729a1d8f authored by derat's avatar derat Committed by Commit bot

arc: Add clip_data_uri field to IntentInfo struct.

Add an optional clip_data_uri field to the IntentInfo
struct. It can be used to supply a URI to be attached to the
intent as ClipData.

BUG=647802

Review-Url: https://chromiumcodereview.appspot.com/2424273002
Cr-Commit-Position: refs/heads/master@{#426542}
parent 97b519d8
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
// //
// Next MinVersion: 13 // Next MinVersion: 14
module arc.mojom; module arc.mojom;
...@@ -37,6 +37,7 @@ struct IntentInfo { ...@@ -37,6 +37,7 @@ struct IntentInfo {
array<string>? categories; array<string>? categories;
string? data; // URI string? data; // URI
string? type; // explicit MIME type for data string? type; // explicit MIME type for data
[MinVersion=13] string? clip_data_uri; // optional URI to provide as ClipData
}; };
struct IntentFilter { struct IntentFilter {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment