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

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

Issue 9235009: Fix license headers in chrome/browser/feedback/proto (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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
« no previous file with comments | « no previous file | 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 2009 Google Inc. All Rights Reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Author: micapolos@google.com (Michal Pociecha-Los) 2 // Use of this source code is governed by a BSD-style license that can be
3 // 3 // found in the LICENSE file.
4
4 // 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
5 // web page. 6 // web page.
6 7
7 syntax = "proto2"; 8 syntax = "proto2";
8 9
9 option optimize_for = LITE_RUNTIME; 10 option optimize_for = LITE_RUNTIME;
10 11
11 package userfeedback; 12 package userfeedback;
12 13
13 import "math.proto"; 14 import "math.proto";
14 import "dom.proto"; 15 import "dom.proto";
15 16
16 // An annotation drawn by the user on the screenshot of a web page. 17 // An annotation drawn by the user on the screenshot of a web page.
17 message Annotation { 18 message Annotation {
18 // A rectangular area covered by this annotation on annotated image. 19 // A rectangular area covered by this annotation on annotated image.
19 // The (0, 0) coordinate is placed in the top-left corner of the image. 20 // The (0, 0) coordinate is placed in the top-left corner of the image.
20 // One unit corresponds to one pixel. 21 // One unit corresponds to one pixel.
21 required Rectangle rectangle = 1; 22 required Rectangle rectangle = 1;
22 23
23 // A snippet of text displayed inside annotated portion of a web page. 24 // A snippet of text displayed inside annotated portion of a web page.
24 optional string snippet = 2; 25 optional string snippet = 2;
25 26
26 // A path from root element of the document to the annotated element. 27 // A path from root element of the document to the annotated element.
27 optional HtmlPath annotatedElementPath = 3; 28 optional HtmlPath annotatedElementPath = 3;
28 }; 29 };
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/feedback/proto/chrome.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698