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

Side by Side Diff: sdk/lib/_blink/dartium/_blink_dartium.dart

Issue 665413002: Fix History Cross Frame resolver string (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/dom/src/blink_native_DOMImplementation.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /** 1 /**
2 * This library provides entry points to the native Blink code which backs 2 * This library provides entry points to the native Blink code which backs
3 * up the dart:html library. 3 * up the dart:html library.
4 */ 4 */
5 library dart.dom._blink; 5 library dart.dom._blink;
6 6
7 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 7 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
8 // for details. All rights reserved. Use of this source code is governed by a 8 // for details. All rights reserved. Use of this source code is governed by a
9 // BSD-style license that can be found in the LICENSE file. 9 // BSD-style license that can be found in the LICENSE file.
10 10
(...skipping 9136 matching lines...) Expand 10 before | Expand all | Expand 10 after
9147 9147
9148 static postMessage(_DOMWindowCrossFrame, message, targetOrigin, [messagePorts] ) native "Window_postMessage_Callback"; 9148 static postMessage(_DOMWindowCrossFrame, message, targetOrigin, [messagePorts] ) native "Window_postMessage_Callback";
9149 } 9149 }
9150 9150
9151 class Blink_HistoryCrossFrame { 9151 class Blink_HistoryCrossFrame {
9152 // _HistoryCrossFrame native entry points 9152 // _HistoryCrossFrame native entry points
9153 static back(_HistoryCrossFrame) native "History_back_Callback"; 9153 static back(_HistoryCrossFrame) native "History_back_Callback";
9154 9154
9155 static forward(_HistoryCrossFrame) native "History_forward_Callback"; 9155 static forward(_HistoryCrossFrame) native "History_forward_Callback";
9156 9156
9157 static go(_HistoryCrossFrame, distance) native "History_go_Callback_long"; 9157 static go(_HistoryCrossFrame, distance) native "History_go_Callback";
9158 } 9158 }
9159 9159
9160 class Blink_LocationCrossFrame { 9160 class Blink_LocationCrossFrame {
9161 // _LocationCrossFrame native entry points 9161 // _LocationCrossFrame native entry points
9162 static set_href(_LocationCrossFrame, h) native "Location_href_Setter"; 9162 static set_href(_LocationCrossFrame, h) native "Location_href_Setter";
9163 } 9163 }
9164 9164
9165 class Blink_DOMStringMap { 9165 class Blink_DOMStringMap {
9166 // _DOMStringMap native entry points 9166 // _DOMStringMap native entry points
9167 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba ck"; 9167 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba ck";
9168 9168
9169 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback"; 9169 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback";
9170 9170
9171 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac k"; 9171 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac k";
9172 9172
9173 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback"; 9173 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback";
9174 9174
9175 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback"; 9175 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback";
9176 } 9176 }
OLDNEW
« no previous file with comments | « no previous file | tools/dom/src/blink_native_DOMImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698