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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 11280077: Removed Window.focus and Window.blur as they are no longer recommended. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed from localwindow, too. 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:
Download patch
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index 7a8156ba473b05876794af8b0559aa4d76f93de8..8c938fa908c33d8850e7927786fce093ec9f054f 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -15619,10 +15619,6 @@ class LocalWindow extends EventTarget implements Window {
String atob(String string) native "DOMWindow_atob_Callback";
- /** @domName DOMWindow.blur */
- void blur() native "DOMWindow_blur_Callback";
-
-
/** @domName DOMWindow.btoa */
String btoa(String string) native "DOMWindow_btoa_Callback";
@@ -15659,10 +15655,6 @@ class LocalWindow extends EventTarget implements Window {
bool find(String string, bool caseSensitive, bool backwards, bool wrap, bool wholeWord, bool searchInFrames, bool showDialog) native "DOMWindow_find_Callback";
- /** @domName DOMWindow.focus */
- void focus() native "DOMWindow_focus_Callback";
-
-
/** @domName DOMWindow.getComputedStyle */
CSSStyleDeclaration $dom_getComputedStyle(Element element, String pseudoElement) native "DOMWindow_getComputedStyle_Callback";
@@ -28597,8 +28589,6 @@ abstract class Window {
Window get top;
// Methods.
- void focus();
- void blur();
void close();
void postMessage(var message, String targetOrigin, [List messagePorts = null]);
}
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | sdk/lib/html/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698