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

Side by Side Diff: utils/archive/archive.dart

Issue 10842002: Add the beginnings of a Dart wrapper for libarchive. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « utils/archive/Makefile ('k') | utils/archive/dart_archive.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
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.
4
5 /**
6 * The primary library file for the archive library. This is the only file that
7 * should be imported by clients.
8 */
9 #library("archive");
10
11 #import("reader.dart", prefix: "reader");
12
13 // TODO(nweiz): Remove this when 3071 is fixed.
14 /** An error raised by the archive library. */
15 interface ArchiveException {
16 /** A description of the error that occurred. */
17 final String message;
18
19 /** The error code for the error, or null. */
20 final int errno;
21 }
22
23 // TODO(nweiz): Remove this when 3071 is fixed.
24 /** See [reader.ArchiveReader]. */
25 class ArchiveReader extends reader.ArchiveReader {}
OLDNEW
« no previous file with comments | « utils/archive/Makefile ('k') | utils/archive/dart_archive.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698