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

Side by Side Diff: tools/dom/src/blink_native_DOMImplementation.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 | « sdk/lib/_blink/dartium/_blink_dartium.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of _blink; 5 part of _blink;
6 6
7 // _Utils native entry points 7 // _Utils native entry points
8 class Blink_Utils { 8 class Blink_Utils {
9 static window() native "Utils_window"; 9 static window() native "Utils_window";
10 10
(...skipping 28 matching lines...) Expand all
39 39
40 static postMessage(_DOMWindowCrossFrame, message, targetOrigin, [messagePorts] ) native "Window_postMessage_Callback"; 40 static postMessage(_DOMWindowCrossFrame, message, targetOrigin, [messagePorts] ) native "Window_postMessage_Callback";
41 } 41 }
42 42
43 class Blink_HistoryCrossFrame { 43 class Blink_HistoryCrossFrame {
44 // _HistoryCrossFrame native entry points 44 // _HistoryCrossFrame native entry points
45 static back(_HistoryCrossFrame) native "History_back_Callback"; 45 static back(_HistoryCrossFrame) native "History_back_Callback";
46 46
47 static forward(_HistoryCrossFrame) native "History_forward_Callback"; 47 static forward(_HistoryCrossFrame) native "History_forward_Callback";
48 48
49 static go(_HistoryCrossFrame, distance) native "History_go_Callback_long"; 49 static go(_HistoryCrossFrame, distance) native "History_go_Callback";
50 } 50 }
51 51
52 class Blink_LocationCrossFrame { 52 class Blink_LocationCrossFrame {
53 // _LocationCrossFrame native entry points 53 // _LocationCrossFrame native entry points
54 static set_href(_LocationCrossFrame, h) native "Location_href_Setter"; 54 static set_href(_LocationCrossFrame, h) native "Location_href_Setter";
55 } 55 }
56 56
57 class Blink_DOMStringMap { 57 class Blink_DOMStringMap {
58 // _DOMStringMap native entry points 58 // _DOMStringMap native entry points
59 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba ck"; 59 static containsKey(_DOMStringMap, key) native "DOMStringMap_containsKey_Callba ck";
60 60
61 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback"; 61 static item(_DOMStringMap, key) native "DOMStringMap_item_Callback";
62 62
63 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac k"; 63 static setItem(_DOMStringMap, key, value) native "DOMStringMap_setItem_Callbac k";
64 64
65 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback"; 65 static remove(_DOMStringMap, key) native "DOMStringMap_remove_Callback";
66 66
67 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback"; 67 static get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callback";
68 } 68 }
OLDNEW
« no previous file with comments | « sdk/lib/_blink/dartium/_blink_dartium.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698