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

Unified Diff: client/html/src/Window.dart

Issue 8363040: Implement measurement using futures (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Respond to all comments Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: client/html/src/Window.dart
diff --git a/client/html/src/Window.dart b/client/html/src/Window.dart
index 48699b80b38a60296928ab1971fae4daae47ee3e..b947227d17f1af80729e51e9c49167523b0553d1 100644
--- a/client/html/src/Window.dart
+++ b/client/html/src/Window.dart
@@ -263,8 +263,6 @@ interface Window extends EventTarget {
void focus();
- CSSStyleDeclaration getComputedStyle([Element element, String pseudoElement]);
-
DOMSelection getSelection();
MediaQueryList matchMedia(String query);
@@ -295,7 +293,7 @@ interface Window extends EventTarget {
int setInterval(TimeoutHandler handler, int timeout);
- int setTimeout([TimeoutHandler handler, int timeout]);
+ int setTimeout(TimeoutHandler handler, int timeout);
Object showModalDialog(String url, [Object dialogArgs, String featureArgs]);
@@ -303,12 +301,15 @@ interface Window extends EventTarget {
void webkitCancelRequestAnimationFrame(int id);
+ // TODO(jacobr): make these return Future<Point>.
Point webkitConvertPointFromNodeToPage([Node node, Point p]);
Point webkitConvertPointFromPageToNode([Node node, Point p]);
int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, [Element element]);
+ void requestLayoutFrame(TimeoutHandler callback);
+
// Window open(String url, String target, WindowSpec features);
WindowEvents get on();

Powered by Google App Engine
This is Rietveld 408576698