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

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

Issue 9006003: Refactor and fix feedback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove extra include. Created 9 years 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
1 // Copyright 2009 Google Inc. All Rights Reserved. 1 // Copyright 2009 Google Inc. All Rights Reserved.
2 // Author: micapolos@google.com (Michal Pociecha-Los) 2 // Author: micapolos@google.com (Michal Pociecha-Los)
3 // 3 //
4 // Messages containing DOM data captured from the browser. 4 // Messages containing DOM data captured from the browser.
5 // It includes the structure of the HTML document and Navigator data. 5 // It includes the structure of the HTML document and Navigator data.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 // A path in the HTML document between two elements, which are in the 91 // A path in the HTML document between two elements, which are in the
92 // ancestor-descendant relationship. 92 // ancestor-descendant relationship.
93 message HtmlPath { 93 message HtmlPath {
94 94
95 // Ordered list of zero-based indices. 95 // Ordered list of zero-based indices.
96 // Empty path selects root element. 96 // Empty path selects root element.
97 // Non-negative index N selects (N+1)-th child. 97 // Non-negative index N selects (N+1)-th child.
98 // Index -1 selects root element from frame content document. 98 // Index -1 selects root element from frame content document.
99 repeated int32 index = 1; 99 repeated int32 index = 1;
100 }; 100 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698