| OLD | NEW |
| 1 | 1 |
| 2 // 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 |
| 3 // 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 |
| 4 // BSD-style license that can be found in the LICENSE file. | 4 // BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 // DO NOT EDIT - unless you are editing documentation as per: | 6 // DO NOT EDIT |
| 7 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | |
| 8 // Auto-generated dart:chrome library. | 7 // Auto-generated dart:chrome library. |
| 9 | 8 |
| 10 /// Native wrappers for the Chrome Packaged App APIs. | 9 /// Native wrappers for the Chrome Packaged App APIs. |
| 11 /// | 10 /// |
| 12 /// These functions allow direct access to the Packaged App APIs, allowing | 11 /// These functions allow direct access to the Packaged App APIs, allowing |
| 13 /// Chrome Packaged Apps to be written using Dart. | 12 /// Chrome Packaged Apps to be written using Dart. |
| 14 /// | 13 /// |
| 15 /// For more information on these APIs, see the Chrome.* APIs Documentation: | 14 /// For more information on these APIs, see the Chrome.* APIs Documentation: |
| 16 /// http://developer.chrome.com/extensions/api_index.html | 15 /// http://developer.chrome.com/extensions/api_index.html |
| 17 library chrome; | 16 library chrome; |
| 18 | 17 |
| 19 import 'dart:_foreign_helper' show JS; | 18 import 'dart:_foreign_helper' show JS; |
| 20 /* TODO(sashab): Add "show convertDartClosureToJS" once 'show' works. */ | 19 /* TODO(sashab): Add "show convertDartClosureToJS" once 'show' works. */ |
| 21 import 'dart:_js_helper'; | 20 import 'dart:_js_helper'; |
| 22 import 'dart:html_common'; | 21 import 'dart:html_common'; |
| 23 import 'dart:html'; | 22 import 'dart:html'; |
| 24 | 23 |
| 25 part "$AUXILIARY_DIR/chrome/utils.dart"; | 24 part "$AUXILIARY_DIR/chrome/utils.dart"; |
| 26 part "$AUXILIARY_DIR/chrome/chrome.dart"; | 25 part "$AUXILIARY_DIR/chrome/chrome.dart"; |
| 27 | 26 |
| 28 // Generated files below this line. | 27 // Generated files below this line. |
| 28 part "$AUXILIARY_DIR/chrome/alarms.dart"; |
| 29 part "$AUXILIARY_DIR/chrome/app_window.dart"; | 29 part "$AUXILIARY_DIR/chrome/app_window.dart"; |
| 30 part "$AUXILIARY_DIR/chrome/app_runtime.dart"; | 30 part "$AUXILIARY_DIR/chrome/app_runtime.dart"; |
| 31 part "$AUXILIARY_DIR/chrome/bluetooth.dart"; |
| 32 part "$AUXILIARY_DIR/chrome/context_menus.dart"; |
| 33 part "$AUXILIARY_DIR/chrome/file_system.dart"; |
| 34 part "$AUXILIARY_DIR/chrome/media_galleries.dart"; |
| 35 part "$AUXILIARY_DIR/chrome/media_galleries_private.dart"; |
| 36 part "$AUXILIARY_DIR/chrome/push_messaging.dart"; |
| 37 part "$AUXILIARY_DIR/chrome/serial.dart"; |
| 38 part "$AUXILIARY_DIR/chrome/socket.dart"; |
| 39 part "$AUXILIARY_DIR/chrome/sync_file_system.dart"; |
| 40 part "$AUXILIARY_DIR/chrome/system_indicator.dart"; |
| 41 part "$AUXILIARY_DIR/chrome/system_info_display.dart"; |
| 42 part "$AUXILIARY_DIR/chrome/usb.dart"; |
| OLD | NEW |