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

Side by Side Diff: third_party/WebKit/public/platform/modules/document_metadata/copyless_paste.mojom

Issue 2789313002: Add mojo data types for CopylessPaste (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/public/platform/modules/document_metadata/OWNERS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module blink.mojom;
6
7 union Values {
dcheng 2017/04/04 06:30:21 Nit: please add some comments that document the di
wychen 2017/04/05 00:57:53 Done.
8 array<bool> bool_values;
9 array<int64> long_values;
10 array<string> string_values;
11 array<Entity> entity_values;
12 };
13
14 struct Property {
15 string name;
16 Values values;
17 };
18
19 struct Entity {
20 string type;
21 array<Property> properties;
22 };
23
24 struct WebPage {
25 string url;
dcheng 2017/04/04 06:30:20 Please use url.mojom.Url.
wychen 2017/04/05 00:57:53 Done.
26 string title;
27 array<Entity> entities;
28 };
OLDNEW
« no previous file with comments | « third_party/WebKit/public/platform/modules/document_metadata/OWNERS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698