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

Side by Side Diff: lib/html/doc/interface/FileException.dart

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
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 // WARNING: Do not edit - generated code.
6
7 /// @domName FileException
8 interface FileException {
9
10 static final int ABORT_ERR = 3;
11
12 static final int ENCODING_ERR = 5;
13
14 static final int INVALID_MODIFICATION_ERR = 9;
15
16 static final int INVALID_STATE_ERR = 7;
17
18 static final int NOT_FOUND_ERR = 1;
19
20 static final int NOT_READABLE_ERR = 4;
21
22 static final int NO_MODIFICATION_ALLOWED_ERR = 6;
23
24 static final int PATH_EXISTS_ERR = 12;
25
26 static final int QUOTA_EXCEEDED_ERR = 10;
27
28 static final int SECURITY_ERR = 2;
29
30 static final int SYNTAX_ERR = 8;
31
32 static final int TYPE_MISMATCH_ERR = 11;
33
34 /** @domName FileException.code */
35 final int code;
36
37 /** @domName FileException.message */
38 final String message;
39
40 /** @domName FileException.name */
41 final String name;
42
43 /** @domName FileException.toString */
44 String toString();
45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698