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

Unified Diff: client/html/generated/html/frog/Element.dart

Issue 9662010: Don't put private members in dart:html interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Code review changes Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/html/generated/html/dartium/Node.dart ('k') | client/html/generated/html/frog/Node.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/generated/html/frog/Element.dart
diff --git a/client/html/generated/html/frog/Element.dart b/client/html/generated/html/frog/Element.dart
index a0adcd854e8685053b7c81c33c9d256091a620c4..c1050537df3e096d5fb38caf87043eaf6f2e9341 100644
--- a/client/html/generated/html/frog/Element.dart
+++ b/client/html/generated/html/frog/Element.dart
@@ -533,8 +533,8 @@ class _ElementImpl extends _NodeImpl implements Element native "*Element" {
}
Future<CSSStyleDeclaration> getComputedStyle(String pseudoElement) {
- return _createMeasurementFuture(() =>
- window._getComputedStyle(this, pseudoElement),
+ return _createMeasurementFuture(
+ () => _window._getComputedStyle(this, pseudoElement),
new Completer<CSSStyleDeclaration>());
}
« no previous file with comments | « client/html/generated/html/dartium/Node.dart ('k') | client/html/generated/html/frog/Node.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698