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

Side by Side Diff: tools/dom/docs/docs.json

Issue 301413002: Fixed docs for webGL method variants (overloaded methods were getting the same comments). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 | « sdk/lib/web_gl/dart2js/web_gl_dart2js.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "dart.dom.html": { 2 "dart.dom.html": {
3 "AbstractWorker": { 3 "AbstractWorker": {
4 "members": { 4 "members": {
5 "errorEvent": [ 5 "errorEvent": [
6 "/**", 6 "/**",
7 " * Static factory designed to expose `error` events to event", 7 " * Static factory designed to expose `error` events to event",
8 " * handlers that are not necessarily instances of [AbstractWorker]. ", 8 " * handlers that are not necessarily instances of [AbstractWorker]. ",
9 " *", 9 " *",
10 " * See [EventStreamProvider] for usage information.", 10 " * See [EventStreamProvider] for usage information.",
(...skipping 5171 matching lines...) Expand 10 before | Expand all | Expand 10 after
5182 " * bits.", 5182 " * bits.",
5183 " */" 5183 " */"
5184 ] 5184 ]
5185 }, 5185 },
5186 "WebGLRenderingContext": { 5186 "WebGLRenderingContext": {
5187 "members": { 5187 "members": {
5188 "bufferData": [ 5188 "bufferData": [
5189 "/**", 5189 "/**",
5190 " * Buffers the specified data.", 5190 " * Buffers the specified data.",
5191 " *", 5191 " *",
5192 " * This specific method is provided for WebGL API compatibility rea sons, but", 5192 " * The [bufferData] method is provided for WebGL API compatibility reasons, but",
5193 " * it is highly recommended that you use [bufferDataTyped] or [buff erByteData]", 5193 " * it is highly recommended that you use [bufferDataTyped] or [buff erByteData]",
5194 " * depending on your purposes.", 5194 " * depending on your purposes.",
5195 " */" 5195 " */"
5196 ], 5196 ],
5197 "bufferSubData": [ 5197 "bufferSubData": [
5198 "/**", 5198 "/**",
5199 " * Buffers the specified subset of data.", 5199 " * Buffers the specified subset of data.",
5200 " *", 5200 " *",
5201 " * This specific method is provided for WebGL API compatibility rea sons, but", 5201 " * The [bufferSubData] method is provided for WebGL API compatibili ty reasons, but",
5202 " * it is highly recommended that you use [bufferSubDataTyped] or [b ufferSubByteData]", 5202 " * it is highly recommended that you use [bufferSubDataTyped] or [b ufferSubByteData]",
5203 " * depending on your purposes.", 5203 " * depending on your purposes.",
5204 " */" 5204 " */"
5205 ], 5205 ],
5206 "texImage2D": [ 5206 "texImage2D": [
5207 "/**", 5207 "/**",
5208 " * Updates the currently bound texture to [data].", 5208 " * Updates the currently bound texture to [data].",
5209 " *", 5209 " *",
5210 " * This specific method is provided for WebGL API compatibility rea sons, but it", 5210 " * The [texImage2D] method is provided for WebGL API compatibility reasons, but it",
5211 " * is highly recommended that you use [texImage2DUntyped] or [texIm age2DTyped]", 5211 " * is highly recommended that you use [texImage2DUntyped] or [texIm age2DTyped]",
5212 " * (or for more specificity, the more specialized [texImage2DImageD ata],", 5212 " * (or for more specificity, the more specialized [texImage2DImageD ata],",
5213 " * [texImage2DCanvas], [texImage2DVideo]).", 5213 " * [texImage2DCanvas], [texImage2DVideo]).",
5214 " */" 5214 " */"
5215 ], 5215 ],
5216 "texSubImage2D": [ 5216 "texSubImage2D": [
5217 "/**", 5217 "/**",
5218 " * Updates a sub-rectangle of the currently bound texture to [data] .", 5218 " * Updates a sub-rectangle of the currently bound texture to [data] .",
5219 " *", 5219 " *",
5220 " * This specific method is provided for WebGL API compatibility rea sons, but it", 5220 " * The [texSubImage2D] method is provided for WebGL API compatibili ty reasons, but it",
5221 " * is highly recommended that you use [texSubImage2DUntyped] or [te xSubImage2DTyped]", 5221 " * is highly recommended that you use [texSubImage2DUntyped] or [te xSubImage2DTyped]",
5222 " * (or for more specificity, the more specialized [texSubImage2DIma geData],", 5222 " * (or for more specificity, the more specialized [texSubImage2DIma geData],",
5223 " * [texSubImage2DCanvas], [texSubImage2DVideo]).", 5223 " * [texSubImage2DCanvas], [texSubImage2DVideo]).",
5224 " */" 5224 " */"
5225 ] 5225 ]
5226 } 5226 }
5227 } 5227 }
5228 }, 5228 },
5229 "dart.dom.web_sql": { 5229 "dart.dom.web_sql": {
5230 "Database": { 5230 "Database": {
5231 "members": { 5231 "members": {
5232 "changeVersion": [ 5232 "changeVersion": [
5233 "/**", 5233 "/**",
5234 " * Atomically update the database version to [newVersion], asynchro nously", 5234 " * Atomically update the database version to [newVersion], asynchro nously",
5235 " * running [callback] on the [SqlTransaction] representing this", 5235 " * running [callback] on the [SqlTransaction] representing this",
5236 " * [changeVersion] transaction.", 5236 " * [changeVersion] transaction.",
5237 " *", 5237 " *",
5238 " * If [callback] runs successfully, then [successCallback] is calle d.", 5238 " * If [callback] runs successfully, then [successCallback] is calle d.",
5239 " * Otherwise, [errorCallback] is called.", 5239 " * Otherwise, [errorCallback] is called.",
5240 " *", 5240 " *",
5241 " * [oldVersion] should match the database's current [version] exact ly.", 5241 " * [oldVersion] should match the database's current [version] exact ly.",
5242 " *", 5242 " *",
5243 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 5243 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
5244 " */" 5244 " */"
5245 ] 5245 ]
5246 } 5246 }
5247 } 5247 }
5248 } 5248 }
5249 } 5249 }
OLDNEW
« no previous file with comments | « sdk/lib/web_gl/dart2js/web_gl_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698