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

Unified Diff: third_party/WebKit/public/platform/modules/document_metadata/copyless_paste-deprecated.mojom

Issue 2803823004: Remove the old mojo type in Copyless Paste (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/public/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/platform/modules/document_metadata/copyless_paste-deprecated.mojom
diff --git a/third_party/WebKit/public/platform/modules/document_metadata/copyless_paste-deprecated.mojom b/third_party/WebKit/public/platform/modules/document_metadata/copyless_paste-deprecated.mojom
deleted file mode 100644
index 6d8f3b6173a7da7a4beb4cb6d3c037c19ec452d7..0000000000000000000000000000000000000000
--- a/third_party/WebKit/public/platform/modules/document_metadata/copyless_paste-deprecated.mojom
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2017 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-module blink.mojom;
-
-import "url/mojo/url.mojom";
-
-// Due to the restriction of AppIndexing, all elements should be of the
-// same type. Non-array values are converted to arrays of one element.
-union Values {
- array<bool> bool_values;
- array<int64> long_values;
- array<string> string_values;
- array<Entity> entity_values;
-};
-
-// Key-value pair for the attributes of an |Entity|.
-struct Property {
- string name;
- Values values;
-};
-
-// Top-level metadata entry using schema.org vocabulary.
-// Tree structure of entities is possible.
-// Ref: https://developers.google.com/schemas/formats/json-ld
-struct Entity {
- string type; // Correspond to the "@type" key, defined in JSON-LD.
- array<Property> properties;
-};
-
-struct WebPage {
- url.mojom.Url url;
- string title;
- array<Entity> entities;
-};
« no previous file with comments | « third_party/WebKit/public/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698