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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 11299266: remove parens from getter (Closed) Base URL: https://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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index cd9122f959c8b28e82500daf28f91d52df52fec8..db6471178ea01f124f0936add341a7934e26fe40 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -11379,7 +11379,7 @@ class LocalWindow extends EventTarget implements Window native "@*DOMWindow" {
/// @domName Window.outerWidth; @docsEditable true
final int outerWidth;
- /// @domName Window.pagePopupController; @docsEditable true
+ /// @domName DOMWindow.pagePopupController; @docsEditable true
final PagePopupController pagePopupController;
/// @domName Window.pageXOffset; @docsEditable true
@@ -11445,13 +11445,13 @@ class LocalWindow extends EventTarget implements Window native "@*DOMWindow" {
Window get top => _convertNativeToDart_Window(this._top);
dynamic get _top => JS("dynamic", "#.top", this);
- /// @domName Window.webkitIndexedDB; @docsEditable true
+ /// @domName DOMWindow.webkitIndexedDB; @docsEditable true
final IDBFactory webkitIndexedDB;
- /// @domName Window.webkitNotifications; @docsEditable true
+ /// @domName DOMWindow.webkitNotifications; @docsEditable true
final NotificationCenter webkitNotifications;
- /// @domName Window.webkitStorageInfo; @docsEditable true
+ /// @domName DOMWindow.webkitStorageInfo; @docsEditable true
final StorageInfo webkitStorageInfo;
/// @domName Window.window; @docsEditable true
@@ -11510,7 +11510,7 @@ class LocalWindow extends EventTarget implements Window native "@*DOMWindow" {
/// @domName Window.moveTo; @docsEditable true
void moveTo(num x, num y) native;
- /// @domName Window.openDatabase; @docsEditable true
+ /// @domName DOMWindow.openDatabase; @docsEditable true
@Creates('Database') @Creates('DatabaseSync')
Database openDatabase(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback]) native;
@@ -11574,10 +11574,10 @@ class LocalWindow extends EventTarget implements Window native "@*DOMWindow" {
/// @domName Window.webkitConvertPointFromPageToNode; @docsEditable true
Point webkitConvertPointFromPageToNode(Node node, Point p) native;
- /// @domName Window.webkitRequestFileSystem; @docsEditable true
+ /// @domName DOMWindow.webkitRequestFileSystem; @docsEditable true
void webkitRequestFileSystem(int type, int size, FileSystemCallback successCallback, [ErrorCallback errorCallback]) native;
- /// @domName Window.webkitResolveLocalFileSystemURL; @docsEditable true
+ /// @domName DOMWindow.webkitResolveLocalFileSystemURL; @docsEditable true
void webkitResolveLocalFileSystemUrl(String url, EntryCallback successCallback, [ErrorCallback errorCallback]) native "webkitResolveLocalFileSystemURL";
}
@@ -22064,7 +22064,7 @@ class KeyboardEventController {
}
/** Determine if caps lock is one of the currently depressed keys. */
- bool get _capsLockOn() =>
+ bool get _capsLockOn =>
_keyDownList.some((var element) => element.keyCode == KeyCode.CAPS_LOCK);
/**
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698