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

Unified Diff: client/html/release/htmlimpl.dart

Side-by-side diff isn't available for this file because of its large size.
Issue 9110046: Fix various warnings and errors in html_diff and its annotations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge head 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:
Download patch
« no previous file with comments | « client/html/release/html.dart ('k') | client/html/src/DocumentWrappingImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/html/release/htmlimpl.dart
diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart
index 5cf482ee0855d43c4ca6af8ecfa6f3ac2c6bc2b6..38b83b901afdcec2c2fdbf7c253dd63000a73038 100644
--- a/client/html/release/htmlimpl.dart
+++ b/client/html/release/htmlimpl.dart
@@ -5219,25 +5219,6 @@ class LocationWrappingImplementation extends DOMWrapperBase implements Location
// WARNING: Do not edit - generated code.
-class LoseContextWrappingImplementation extends DOMWrapperBase implements LoseContext {
- LoseContextWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
-
- void loseContext() {
- _ptr.loseContext();
- return;
- }
-
- void restoreContext() {
- _ptr.restoreContext();
- return;
- }
-}
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
class LowPass2FilterNodeWrappingImplementation extends AudioNodeWrappingImplementation implements LowPass2FilterNode {
LowPass2FilterNodeWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
@@ -22131,9 +22112,6 @@ class DocumentWrappingImplementation extends ElementWrappingImplementation imple
/** @domName defaultView */
Window get window() => LevelDom.wrapWindow(_documentPtr.defaultView);
- /** @domName designMode */
- void set designMode(String value) { _documentPtr.dynamic.designMode = value; }
-
/** @domName domain */
String get domain() => _documentPtr.domain;
@@ -22863,7 +22841,7 @@ class ElementWrappingImplementation extends NodeWrappingImplementation implement
/**
* @domName childElementCount, firstElementChild, lastElementChild,
- * children, appendChild
+ * children, Node.appendChild
*/
ElementList get elements() {
if (_elements == null) {
@@ -23341,6 +23319,24 @@ class KeyboardEventWrappingImplementation extends UIEventWrappingImplementation
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
+/** @domName WebGLLoseContext */
+class LoseContextWrappingImplementation extends DOMWrapperBase implements LoseContext {
+ LoseContextWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
+
+ void loseContext() {
+ _ptr.loseContext();
+ return;
+ }
+
+ void restoreContext() {
+ _ptr.restoreContext();
+ return;
+ }
+}
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
typedef Object ComputeValue();
class _MeasurementRequest<T> {
« no previous file with comments | « client/html/release/html.dart ('k') | client/html/src/DocumentWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698