| OLD | NEW |
| 1 |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 3 // 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. | 4 // BSD-style license that can be found in the LICENSE file. |
| 4 | 5 |
| 5 // DO NOT EDIT | 6 // DO NOT EDIT |
| 6 // Auto-generated dart:chrome library. | 7 // Auto-generated dart:chrome library. |
| 7 | 8 |
| 9 /// Native wrappers for the Chrome Packaged App APIs. |
| 10 /// |
| 11 /// These functions allow direct access to the Packaged App APIs, allowing |
| 12 /// Chrome Packaged Apps to be written using Dart. |
| 13 /// |
| 14 /// For more information on these APIs, see the Chrome.* APIs Documentation: |
| 15 /// http://developer.chrome.com/extensions/api_index.html |
| 8 library chrome; | 16 library chrome; |
| 9 | 17 |
| 10 import 'dart:_foreign_helper' show JS; | 18 import 'dart:_foreign_helper' show JS; |
| 19 /* TODO(sashab): Add "show convertDartClosureToJS" once 'show' works. */ |
| 20 import 'dart:_js_helper'; |
| 11 import 'dart:html_common'; | 21 import 'dart:html_common'; |
| 12 import 'dart:html'; | 22 import 'dart:html'; |
| 13 | 23 |
| 14 part "$AUXILIARY_DIR/chrome/utils.dart"; | 24 part "$AUXILIARY_DIR/chrome/utils.dart"; |
| 15 part "$AUXILIARY_DIR/chrome/chrome.dart"; | 25 part "$AUXILIARY_DIR/chrome/chrome.dart"; |
| 16 part "$AUXILIARY_DIR/chrome/app.runtime.dart"; | |
| 17 part "$AUXILIARY_DIR/chrome/app.window.dart"; | |
| 18 | 26 |
| 27 // Generated files below this line. |
| 28 part "$AUXILIARY_DIR/chrome/app_window.dart"; |
| 29 part "$AUXILIARY_DIR/chrome/app_runtime.dart"; |
| OLD | NEW |