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

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

Issue 203413004: Provide URLs for assets from lib/ and asset/ in pub's websocket API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix some small bugs Created 6 years, 9 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/server.dart
diff --git a/sdk/lib/_internal/pub/lib/src/barback/server.dart b/sdk/lib/_internal/pub/lib/src/barback/server.dart
index 40d2c2cfce3bccfba5bc3d5b891b990be512c267..162c95277f41c4c5861b7a5bd3a5379de6a905c0 100644
--- a/sdk/lib/_internal/pub/lib/src/barback/server.dart
+++ b/sdk/lib/_internal/pub/lib/src/barback/server.dart
@@ -40,9 +40,6 @@ class BarbackServer {
/// are available.
final String rootDirectory;
- /// The root directory as an asset-style ("/") path.
- String get rootAssetPath => path.url.joinAll(path.split(rootDirectory));
-
/// The server's port.
final int port;
@@ -50,7 +47,7 @@ class BarbackServer {
final InternetAddress address;
/// The server's base URL.
- String get url => baseUrlForAddress(address, port);
+ Uri get url => baseUrlForAddress(address, port);
/// Optional callback to determine if an asset should be served.
///

Powered by Google App Engine
This is Rietveld 408576698