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

Side by Side Diff: sdk/lib/io/data_transformer.dart

Issue 2974433002: Remaining private libs (Closed)
Patch Set: It's html_common Created 3 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 unified diff | Download patch
« no previous file with comments | « sdk/lib/io/crypto.dart ('k') | sdk/lib/io/directory.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of "io.dart"; 5 part of "dart:io";
6 6
7 /** 7 /**
8 * Exposes ZLib options for input parameters. 8 * Exposes ZLib options for input parameters.
9 * 9 *
10 * See http://www.zlib.net/manual.html for more documentation. 10 * See http://www.zlib.net/manual.html for more documentation.
11 */ 11 */
12 abstract class ZLibOption { 12 abstract class ZLibOption {
13 /// Minimal value for [ZLibCodec.windowBits], [ZLibEncoder.windowBits] 13 /// Minimal value for [ZLibCodec.windowBits], [ZLibEncoder.windowBits]
14 /// and [ZLibDecoder.windowBits]. 14 /// and [ZLibDecoder.windowBits].
15 static const int MIN_WINDOW_BITS = 8; 15 static const int MIN_WINDOW_BITS = 8;
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 ZLibOption.STRATEGY_FILTERED, 603 ZLibOption.STRATEGY_FILTERED,
604 ZLibOption.STRATEGY_HUFFMAN_ONLY, 604 ZLibOption.STRATEGY_HUFFMAN_ONLY,
605 ZLibOption.STRATEGY_RLE, 605 ZLibOption.STRATEGY_RLE,
606 ZLibOption.STRATEGY_FIXED, 606 ZLibOption.STRATEGY_FIXED,
607 ZLibOption.STRATEGY_DEFAULT 607 ZLibOption.STRATEGY_DEFAULT
608 ]; 608 ];
609 if (strategies.indexOf(strategy) == -1) { 609 if (strategies.indexOf(strategy) == -1) {
610 throw new ArgumentError("Unsupported 'strategy'"); 610 throw new ArgumentError("Unsupported 'strategy'");
611 } 611 }
612 } 612 }
OLDNEW
« no previous file with comments | « sdk/lib/io/crypto.dart ('k') | sdk/lib/io/directory.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698