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

Unified Diff: pkg/http_server/lib/src/http_body.dart

Issue 19158002: Fix editor warnings in http_server and mime. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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
« no previous file with comments | « no previous file | pkg/http_server/lib/src/http_multipart_form_data_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/http_server/lib/src/http_body.dart
diff --git a/pkg/http_server/lib/src/http_body.dart b/pkg/http_server/lib/src/http_body.dart
index 3efaadf3c352e97e098109cdc775b1410408796f..422f9dcb0e658c7b10741054901741a0329b6eff 100644
--- a/pkg/http_server/lib/src/http_body.dart
+++ b/pkg/http_server/lib/src/http_body.dart
@@ -223,16 +223,16 @@ abstract class HttpBodyFileUpload {
/**
* The filename of the uploaded file.
*/
- String filename;
+ String get filename;
/**
* The [ContentType] of the uploaded file. For 'text/\*' and
* 'application/json' the [data] field will a String.
*/
- ContentType contentType;
+ ContentType get contentType;
/**
* The content of the file. Either a [String] or a [List<int>].
*/
- dynamic content;
+ dynamic get content;
}
« no previous file with comments | « no previous file | pkg/http_server/lib/src/http_multipart_form_data_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698