| Index: client/html/generated/src/wrapping/_StorageInfoWrappingImplementation.dart | 
| diff --git a/client/html/generated/src/wrapping/_StorageInfoWrappingImplementation.dart b/client/html/generated/src/wrapping/_StorageInfoWrappingImplementation.dart | 
| deleted file mode 100644 | 
| index e1f518d59dc587be9db357b25e1b539e3ab8f437..0000000000000000000000000000000000000000 | 
| --- a/client/html/generated/src/wrapping/_StorageInfoWrappingImplementation.dart | 
| +++ /dev/null | 
| @@ -1,45 +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 StorageInfoWrappingImplementation extends DOMWrapperBase implements StorageInfo { | 
| -  StorageInfoWrappingImplementation._wrap(ptr) : super._wrap(ptr) {} | 
| - | 
| -  void queryUsageAndQuota(int storageType, [StorageInfoUsageCallback usageCallback, StorageInfoErrorCallback errorCallback]) { | 
| -    if (usageCallback === null) { | 
| -      if (errorCallback === null) { | 
| -        _ptr.queryUsageAndQuota(storageType); | 
| -        return; | 
| -      } | 
| -    } else { | 
| -      if (errorCallback === null) { | 
| -        _ptr.queryUsageAndQuota(storageType, LevelDom.unwrap(usageCallback)); | 
| -        return; | 
| -      } else { | 
| -        _ptr.queryUsageAndQuota(storageType, LevelDom.unwrap(usageCallback), errorCallback); | 
| -        return; | 
| -      } | 
| -    } | 
| -    throw "Incorrect number or type of arguments"; | 
| -  } | 
| - | 
| -  void requestQuota(int storageType, int newQuotaInBytes, [StorageInfoQuotaCallback quotaCallback, StorageInfoErrorCallback errorCallback]) { | 
| -    if (quotaCallback === null) { | 
| -      if (errorCallback === null) { | 
| -        _ptr.requestQuota(storageType, newQuotaInBytes); | 
| -        return; | 
| -      } | 
| -    } else { | 
| -      if (errorCallback === null) { | 
| -        _ptr.requestQuota(storageType, newQuotaInBytes, quotaCallback); | 
| -        return; | 
| -      } else { | 
| -        _ptr.requestQuota(storageType, newQuotaInBytes, quotaCallback, errorCallback); | 
| -        return; | 
| -      } | 
| -    } | 
| -    throw "Incorrect number or type of arguments"; | 
| -  } | 
| -} | 
|  |