| Index: pkg/barback/lib/src/package_provider.dart
|
| diff --git a/pkg/barback/lib/src/asset_provider.dart b/pkg/barback/lib/src/package_provider.dart
|
| similarity index 89%
|
| rename from pkg/barback/lib/src/asset_provider.dart
|
| rename to pkg/barback/lib/src/package_provider.dart
|
| index f57939753733b24a0f9cfbba0a6b05144e764fdf..8506d14ce63f6c958be8ab2b89b71c54f175dab0 100644
|
| --- a/pkg/barback/lib/src/asset_provider.dart
|
| +++ b/pkg/barback/lib/src/package_provider.dart
|
| @@ -2,7 +2,7 @@
|
| // 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.
|
|
|
| -library barback.asset_provider;
|
| +library barback.package_provider;
|
|
|
| import 'dart:async';
|
|
|
| @@ -10,13 +10,11 @@ import 'asset.dart';
|
| import 'asset_id.dart';
|
| import 'transformer.dart';
|
|
|
| -// TODO(nweiz): change the name of this class now that it provides more than
|
| -// just assets.
|
| /// API for locating and accessing packages on disk.
|
| ///
|
| /// Implemented by pub and provided to barback so that it isn't coupled
|
| /// directly to pub.
|
| -abstract class AssetProvider {
|
| +abstract class PackageProvider {
|
| /// The names of all packages that can be provided by this provider.
|
| ///
|
| /// This is equal to the transitive closure of the entrypoint package
|
|
|