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

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

Issue 2068004: Commiting http://codereview.chromium.org/2017007/show on behalf of rkc@chromi... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2009 Google Inc. All Rights Reserved.
2 // Author: micapolos@google.com (Michal Pociecha-Los)
3 //
4 // Messages containing data about the annotations drawn on the screenshot of a
5 // web page.
6
7 syntax = "proto2";
8
9 package userfeedback;
10
11 import "math.proto";
12 import "dom.proto";
13
14 // An annotation drawn by the user on the screenshot of a web page.
15 message Annotation {
16 // A rectangular area covered by this annotation on annotated image.
17 // The (0, 0) coordinate is placed in the top-left corner of the image.
18 // One unit corresponds to one pixel.
19 required Rectangle rectangle = 1;
20
21 // A snippet of text displayed inside annotated portion of a web page.
22 optional string snippet = 2;
23
24 // A path from root element of the document to the annotated element.
25 optional HtmlPath annotatedElementPath = 3;
26 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698