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

Side by Side Diff: tools/cc-frame-viewer/third_party/gl-matrix/jsdoc-template/symbol.tmpl

Issue 12251005: [cc-frame-viewer] Add gl-matrix to third_party [redux] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 <symbol alias="{+data.alias+}">
2 <name>{+data.name+}</name>
3 <memberOf>{+data.memberOf+}</memberOf>
4 <isStatic>{+data.isStatic+}</isStatic>
5 <isa>{+data.isa+}</isa>
6 <desc>{+data.desc+}</desc>
7 <classDesc>{+data.classDesc+}</classDesc>
8
9 <methods><for each="method" in="data.methods">
10 <method>
11 <name>{+method.name+}</name>
12 <memberOf>{+method.memberOf+}</memberOf>
13 <isStatic>{+method.isStatic+}</isStatic>
14 <desc>{+method.desc+}</desc>
15 <params><for each="param" in="method.params">
16 <param>
17 <type>{+param.type+}</type>
18 <name>{+param.name+}</name>
19 <desc>{+param.desc+}</desc>
20 <defaultValue>{+param.defaultValue+}</de faultValue>
21 </param></for>
22 </params>
23 </method></for>
24 </methods>
25
26 <properties><for each="property" in="data.properties">
27 <property>
28 <name>{+property.name+}</name>
29 <memberOf>{+property.memberOf+}</memberOf>
30 <isStatic>{+property.isStatic+}</isStatic>
31 <desc>{+property.desc+}</desc>
32 <type>{+property.type+}</type>
33 </property></for>
34 </properties>
35 </symbol>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698