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

Unified Diff: client/dom/generated/src/wrapping/_FileReaderSyncWrappingImplementation.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/_FileReaderSyncWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_FileReaderSyncWrappingImplementation.dart b/client/dom/generated/src/wrapping/_FileReaderSyncWrappingImplementation.dart
deleted file mode 100644
index 5e5f992c9cb68be64f454ce78466a569c0763fd3..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_FileReaderSyncWrappingImplementation.dart
+++ /dev/null
@@ -1,40 +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 _FileReaderSyncWrappingImplementation extends DOMWrapperBase implements FileReaderSync {
- _FileReaderSyncWrappingImplementation() : super() {}
-
- static create__FileReaderSyncWrappingImplementation() native {
- return new _FileReaderSyncWrappingImplementation();
- }
-
- ArrayBuffer readAsArrayBuffer(Blob blob) {
- return _readAsArrayBuffer(this, blob);
- }
- static ArrayBuffer _readAsArrayBuffer(receiver, blob) native;
-
- String readAsBinaryString(Blob blob) {
- return _readAsBinaryString(this, blob);
- }
- static String _readAsBinaryString(receiver, blob) native;
-
- String readAsDataURL(Blob blob) {
- return _readAsDataURL(this, blob);
- }
- static String _readAsDataURL(receiver, blob) native;
-
- String readAsText(Blob blob, [String encoding = null]) {
- if (encoding === null) {
- return _readAsText(this, blob);
- } else {
- return _readAsText_2(this, blob, encoding);
- }
- }
- static String _readAsText(receiver, blob) native;
- static String _readAsText_2(receiver, blob, encoding) native;
-
- String get typeName() { return "FileReaderSync"; }
-}

Powered by Google App Engine
This is Rietveld 408576698