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

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

Issue 11415076: Removing Window.blur() and Window.focus(). This time for real. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Testing. 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 | « 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 30ea8b93349268176c75030ecbca4d3408110daf..65074cc8ffb4525c3851d52d5e8d3f906f2526ff 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -15636,10 +15636,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";
@@ -15676,10 +15672,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";
@@ -28669,8 +28661,6 @@ abstract class Window {
Window get top;
// Methods.
- void focus();
- void blur();
void close();
void postMessage(var message, String targetOrigin, [List messagePorts = null]);
}
@@ -30871,8 +30861,6 @@ class _DOMWindowCrossFrame extends NativeFieldWrapperClass1 implements Window {
Window get top() native "DOMWindow_top_Getter";
// Methods.
- void focus() native "DOMWindow_focus_Callback";
- void blur() native "DOMWindow_blur_Callback";
void close() native "DOMWindow_close_Callback";
void postMessage(/*SerializedScriptValue*/ message, String targetOrigin, [List messagePorts]) native "DOMWindow_postMessage_Callback";
« 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