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

Unified Diff: sdk/lib/_blink/dartium/_blink_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 1879093002: Revert "Fix handling of cross-origin windows in dartium and better align general handling of differ… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 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:
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/_blink/dartium/_blink_dartium.dart
diff --git a/sdk/lib/_blink/dartium/_blink_dartium.dart b/sdk/lib/_blink/dartium/_blink_dartium.dart
index 479b23148388879f0c1dc61c37bf0dab989e9b61..609fd8895211964fa32504e3ad55ca8e3cfe5f2d 100644
--- a/sdk/lib/_blink/dartium/_blink_dartium.dart
+++ b/sdk/lib/_blink/dartium/_blink_dartium.dart
@@ -23308,6 +23308,39 @@ class Blink_Utils {
static initializeCustomElement(element) native "Utils_initializeCustomElement";
}
+class Blink_DOMWindowCrossFrame {
+ // FIXME: Return to using explicit cross frame entry points after roll to M35
+ static get_history(_DOMWindowCrossFrame) native "Window_history_cross_frame_Getter";
+
+ static get_location(_DOMWindowCrossFrame) native "Window_location_cross_frame_Getter";
+
+ static get_closed(_DOMWindowCrossFrame) native "Window_closed_Getter";
+
+ static get_opener(_DOMWindowCrossFrame) native "Window_opener_Getter";
+
+ static get_parent(_DOMWindowCrossFrame) native "Window_parent_Getter";
+
+ static get_top(_DOMWindowCrossFrame) native "Window_top_Getter";
+
+ static close(_DOMWindowCrossFrame) native "Window_close_Callback";
+
+ static postMessage(_DOMWindowCrossFrame, message, targetOrigin, [messagePorts]) native "Window_postMessage_Callback";
+}
+
+class Blink_HistoryCrossFrame {
+ // _HistoryCrossFrame native entry points
+ static back(_HistoryCrossFrame) native "History_back_Callback";
+
+ static forward(_HistoryCrossFrame) native "History_forward_Callback";
+
+ static go(_HistoryCrossFrame, distance) native "History_go_Callback";
+}
+
+class Blink_LocationCrossFrame {
+ // _LocationCrossFrame native entry points
+ static set_href(_LocationCrossFrame, h) native "Location_href_Setter";
+}
+
class Blink_DOMStringMap {
// _DOMStringMap native entry points
static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callback";
« 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