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

Side by Side Diff: chrome/browser/feedback/proto/annotations.proto

Issue 11228038: Linux: change protobuf default option to allow building (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/chromeos/drive/drive.proto ('k') | chrome/browser/feedback/proto/chrome.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Messages containing data about the annotations drawn on the screenshot of a 5 // Messages containing data about the annotations drawn on the screenshot of a
6 // web page. 6 // web page.
7 7
8 syntax = "proto2"; 8 syntax = "proto2";
9 9
10 option optimize_for = LITE_RUNTIME;
11
12 package userfeedback; 10 package userfeedback;
13 11
14 import "math.proto"; 12 import "math.proto";
15 import "dom.proto"; 13 import "dom.proto";
16 14
17 // An annotation drawn by the user on the screenshot of a web page. 15 // An annotation drawn by the user on the screenshot of a web page.
18 message Annotation { 16 message Annotation {
19 // A rectangular area covered by this annotation on annotated image. 17 // A rectangular area covered by this annotation on annotated image.
20 // The (0, 0) coordinate is placed in the top-left corner of the image. 18 // The (0, 0) coordinate is placed in the top-left corner of the image.
21 // One unit corresponds to one pixel. 19 // One unit corresponds to one pixel.
22 required Rectangle rectangle = 1; 20 required Rectangle rectangle = 1;
23 21
24 // A snippet of text displayed inside annotated portion of a web page. 22 // A snippet of text displayed inside annotated portion of a web page.
25 optional string snippet = 2; 23 optional string snippet = 2;
26 24
27 // A path from root element of the document to the annotated element. 25 // A path from root element of the document to the annotated element.
28 optional HtmlPath annotatedElementPath = 3; 26 optional HtmlPath annotatedElementPath = 3;
29 }; 27 };
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/drive/drive.proto ('k') | chrome/browser/feedback/proto/chrome.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698