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

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

Issue 1831033002: Fix WebGL tex[Sub]Image2D/buffer[Sub]Data, restored Typed/Untyped aliases (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « sdk/lib/web_gl/dartium/web_gl_dartium.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | 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 5163 matching lines...) Expand 10 before | Expand all | Expand 10 after
5174 " * If [preserveDrawingBuffer] is `false`, then all contents of the cont ext are", 5174 " * If [preserveDrawingBuffer] is `false`, then all contents of the cont ext are",
5175 " * cleared. If `true`, then all values will remain until changed or cle ared.", 5175 " * cleared. If `true`, then all values will remain until changed or cle ared.",
5176 " *", 5176 " *",
5177 " * If [stencil] is `true`, then the context has a stencil buffer of at least 8", 5177 " * If [stencil] is `true`, then the context has a stencil buffer of at least 8",
5178 " * bits.", 5178 " * bits.",
5179 " */" 5179 " */"
5180 ] 5180 ]
5181 }, 5181 },
5182 "WebGLRenderingContext": { 5182 "WebGLRenderingContext": {
5183 "members": { 5183 "members": {
5184 "bufferData": [
5185 "/**",
5186 " * Buffers the specified data.",
5187 " *",
5188 " * The [bufferData] method is provided for WebGL API compatibility reasons, but",
5189 " * it is highly recommended that you use [bufferDataTyped] or [buff erByteData]",
5190 " * depending on your purposes.",
5191 " */"
5192 ],
5193 "bufferSubData": [
5194 "/**",
5195 " * Buffers the specified subset of data.",
5196 " *",
5197 " * The [bufferSubData] method is provided for WebGL API compatibili ty reasons, but",
5198 " * it is highly recommended that you use [bufferSubDataTyped] or [b ufferSubByteData]",
5199 " * depending on your purposes.",
5200 " */"
5201 ],
5202 "texImage2D": [
5203 "/**",
5204 " * Updates the currently bound texture to [data].",
5205 " *",
5206 " * The [texImage2D] method is provided for WebGL API compatibility reasons, but it",
5207 " * is highly recommended that you use [texImage2DUntyped] or [texIm age2DTyped]",
5208 " * (or for more specificity, the more specialized [texImage2DImageD ata],",
5209 " * [texImage2DCanvas], [texImage2DVideo]).",
5210 " */"
5211 ],
5212 "texSubImage2D": [
5213 "/**",
5214 " * Updates a sub-rectangle of the currently bound texture to [data] .",
5215 " *",
5216 " * The [texSubImage2D] method is provided for WebGL API compatibili ty reasons, but it",
5217 " * is highly recommended that you use [texSubImage2DUntyped] or [te xSubImage2DTyped]",
5218 " * (or for more specificity, the more specialized [texSubImage2DIma geData],",
5219 " * [texSubImage2DCanvas], [texSubImage2DVideo]).",
5220 " */"
5221 ]
5222 } 5184 }
5223 } 5185 }
5224 }, 5186 },
5225 "dart.dom.web_sql": { 5187 "dart.dom.web_sql": {
5226 "Database": { 5188 "Database": {
5227 "members": { 5189 "members": {
5228 "changeVersion": [ 5190 "changeVersion": [
5229 "/**", 5191 "/**",
5230 " * Atomically update the database version to [newVersion], asynchro nously", 5192 " * Atomically update the database version to [newVersion], asynchro nously",
5231 " * running [callback] on the [SqlTransaction] representing this", 5193 " * running [callback] on the [SqlTransaction] representing this",
5232 " * [changeVersion] transaction.", 5194 " * [changeVersion] transaction.",
5233 " *", 5195 " *",
5234 " * If [callback] runs successfully, then [successCallback] is calle d.", 5196 " * If [callback] runs successfully, then [successCallback] is calle d.",
5235 " * Otherwise, [errorCallback] is called.", 5197 " * Otherwise, [errorCallback] is called.",
5236 " *", 5198 " *",
5237 " * [oldVersion] should match the database's current [version] exact ly.", 5199 " * [oldVersion] should match the database's current [version] exact ly.",
5238 " *", 5200 " *",
5239 " * See also:", 5201 " * See also:",
5240 " *", 5202 " *",
5241 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.", 5203 " * * [Database.changeVersion](http://www.w3.org/TR/webdatabase/#dom -database-changeversion) from W3C.",
5242 " */" 5204 " */"
5243 ] 5205 ]
5244 } 5206 }
5245 } 5207 }
5246 } 5208 }
5247 } 5209 }
OLDNEW
« no previous file with comments | « sdk/lib/web_gl/dartium/web_gl_dartium.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698