Make sure webrtc::VideoSource is released when WebRtcVideoTrackAdapter is destroyed.
[chromium-blink-merge.git] / components / dom_distiller / core / proto / distilled_page.proto
blobb12098dcc83ffc523be08df4db6b9ecf8f13c438
1 // Copyright 2013 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 // Distilled page content.
7 syntax = "proto2";
9 option optimize_for = LITE_RUNTIME;
11 package dom_distiller;
13 message DistilledPageProto {
14   // The URLs used to create this page.
15   required string url = 1;
17   // The distilled HTML.
18   required string html = 3;
20   message Image {
21     // Handle to the image. This could be the URL where the image was found.
22     // The handle should be referenced verbatim in the HTML.
23     required string name = 1;
25     // The image data
26     required bytes data = 2;
27   }
29   // The images referenced in the HTML.
30   repeated Image image = 4;
32   // Title for the current page.
33   optional string title = 5;