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

Unified Diff: sdk/lib/_internal/pub/lib/src/barback/barback_server.dart

Issue 238443002: Rename BuildDirectory -> SourceDirectory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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: sdk/lib/_internal/pub/lib/src/barback/barback_server.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/barback_server.dart b/sdk/lib/_internal/pub/lib/src/barback/barback_server.dart
index 954658b600eb797c3360b84674d77538fd9b4ca5..3ea060de3baaee2078306d5684e39298620ecf38 100644
--- a/sdk/lib/_internal/pub/lib/src/barback/barback_server.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback/barback_server.dart
@@ -16,7 +16,7 @@ import '../barback.dart';
import '../log.dart' as log;
import '../utils.dart';
import 'base_server.dart';
-import 'build_environment.dart';
+import 'asset_environment.dart';
/// Callback for determining if an asset with [id] should be served or not.
typedef bool AllowAsset(AssetId id);
@@ -49,7 +49,7 @@ class BarbackServer extends BaseServer<BarbackServerResult> {
///
/// This server will serve assets from [barback], and use [rootDirectory] as
/// the root directory.
- static Future<BarbackServer> bind(BuildEnvironment environment,
+ static Future<BarbackServer> bind(AssetEnvironment environment,
String host, int port, String rootDirectory) {
return Chain.track(HttpServer.bind(host, port)).then((server) {
log.fine('Bound "$rootDirectory" to $host:$port.');
@@ -57,7 +57,7 @@ class BarbackServer extends BaseServer<BarbackServerResult> {
});
}
- BarbackServer._(BuildEnvironment environment, HttpServer server,
+ BarbackServer._(AssetEnvironment environment, HttpServer server,
this.rootDirectory)
: super(environment, server);

Powered by Google App Engine
This is Rietveld 408576698