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

Unified Diff: client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart b/client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart
deleted file mode 100644
index b919e52e9bd9f20de54c6a6e4b54bad72f4a4374..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart
+++ /dev/null
@@ -1,51 +0,0 @@
-// 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 _TouchWrappingImplementation extends DOMWrapperBase implements Touch {
- _TouchWrappingImplementation() : super() {}
-
- static create__TouchWrappingImplementation() native {
- return new _TouchWrappingImplementation();
- }
-
- int get clientX() { return _get_clientX(this); }
- static int _get_clientX(var _this) native;
-
- int get clientY() { return _get_clientY(this); }
- static int _get_clientY(var _this) native;
-
- int get identifier() { return _get_identifier(this); }
- static int _get_identifier(var _this) native;
-
- int get pageX() { return _get_pageX(this); }
- static int _get_pageX(var _this) native;
-
- int get pageY() { return _get_pageY(this); }
- static int _get_pageY(var _this) native;
-
- int get screenX() { return _get_screenX(this); }
- static int _get_screenX(var _this) native;
-
- int get screenY() { return _get_screenY(this); }
- static int _get_screenY(var _this) native;
-
- EventTarget get target() { return _get_target(this); }
- static EventTarget _get_target(var _this) native;
-
- num get webkitForce() { return _get_webkitForce(this); }
- static num _get_webkitForce(var _this) native;
-
- int get webkitRadiusX() { return _get_webkitRadiusX(this); }
- static int _get_webkitRadiusX(var _this) native;
-
- int get webkitRadiusY() { return _get_webkitRadiusY(this); }
- static int _get_webkitRadiusY(var _this) native;
-
- num get webkitRotationAngle() { return _get_webkitRotationAngle(this); }
- static num _get_webkitRotationAngle(var _this) native;
-
- String get typeName() { return "Touch"; }
-}

Powered by Google App Engine
This is Rietveld 408576698