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

Side by Side Diff: sdk/lib/html/templates/html/interface/interface_LocalWindow.darttemplate

Issue 11312091: Rename DOMURL to ObjectUrl. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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 (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 part of html; 7 part of html;
8 8
9 $!COMMENT 9 $!COMMENT
10 abstract class $ID$EXTENDS { 10 abstract class $ID$EXTENDS {
(...skipping 11 matching lines...) Expand all
22 */ 22 */
23 SendPortSync lookupPort(String name); 23 SendPortSync lookupPort(String name);
24 24
25 /** 25 /**
26 * Executes a [callback] after the next batch of browser layout measurements 26 * Executes a [callback] after the next batch of browser layout measurements
27 * has completed or would have completed if any browser layout measurements 27 * has completed or would have completed if any browser layout measurements
28 * had been scheduled. 28 * had been scheduled.
29 */ 29 */
30 void requestLayoutFrame(TimeoutHandler callback); 30 void requestLayoutFrame(TimeoutHandler callback);
31 31
32 /**
33 * Creates a new object URL for the specified object. The URL will be
34 * available until revokeObjectUrl is called.
35 * [object] can be a Blob, MediaStream or MediaSource.
36 */
37 String createObjectUrl(object);
38
39 /** @domName DOMURL.revokeObjectURL */
40 void revokeObjectUrl(String objectUrl);
41
42 $!MEMBERS 32 $!MEMBERS
43 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698