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

Side by Side Diff: client/dom/generated/src/wrapping/_LocationWrappingImplementation.dart

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues Created 8 years, 11 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _LocationWrappingImplementation extends DOMWrapperBase implements Location { 7 class _LocationWrappingImplementation extends DOMWrapperBase implements Location {
8 _LocationWrappingImplementation() : super() {} 8 _LocationWrappingImplementation() : super() {}
9 9
10 static create__LocationWrappingImplementation() native { 10 static create__LocationWrappingImplementation() native {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 void set search(String value) { _set_search(this, value); } 62 void set search(String value) { _set_search(this, value); }
63 static void _set_search(var _this, String value) native; 63 static void _set_search(var _this, String value) native;
64 64
65 void assign(String url) { 65 void assign(String url) {
66 _assign(this, url); 66 _assign(this, url);
67 return; 67 return;
68 } 68 }
69 static void _assign(receiver, url) native; 69 static void _assign(receiver, url) native;
70 70
71 String getParameter(String name) {
72 return _getParameter(this, name);
73 }
74 static String _getParameter(receiver, name) native;
75
76 void reload() { 71 void reload() {
77 _reload(this); 72 _reload(this);
78 return; 73 return;
79 } 74 }
80 static void _reload(receiver) native; 75 static void _reload(receiver) native;
81 76
82 void replace(String url) { 77 void replace(String url) {
83 _replace(this, url); 78 _replace(this, url);
84 return; 79 return;
85 } 80 }
86 static void _replace(receiver, url) native; 81 static void _replace(receiver, url) native;
87 82
88 String toString() { 83 String toString() {
89 return _toString(this); 84 return _toString(this);
90 } 85 }
91 static String _toString(receiver) native; 86 static String _toString(receiver) native;
92 87
93 String get typeName() { return "Location"; } 88 String get typeName() { return "Location"; }
94 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698