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

Unified Diff: pkg/analysis_server/lib/src/index/store/split_store.dart

Issue 346273005: A FileManager implementation to keep each index file in a separate file system file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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: pkg/analysis_server/lib/src/index/store/split_store.dart
diff --git a/pkg/analysis_server/lib/src/index/store/split_store.dart b/pkg/analysis_server/lib/src/index/store/split_store.dart
index 63b19bd5f7592b07dc13085b97cfe6d9cfbe6de3..6eb90e523e215931801196a55ee45a4464374cbc 100644
--- a/pkg/analysis_server/lib/src/index/store/split_store.dart
+++ b/pkg/analysis_server/lib/src/index/store/split_store.dart
@@ -40,7 +40,7 @@ abstract class FileManager {
/**
* Write a list of bytes to a file.
*/
- Future write(String name, Uint8List bytes);
+ Future write(String name, List<int> bytes);
}

Powered by Google App Engine
This is Rietveld 408576698