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

Side by Side Diff: third_party/WebCore/dom/CharacterData.idl

Issue 11000007: Revert "Roll IDL to multivm@910" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
1 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 27 matching lines...) Expand all
38 raises(DOMException); 38 raises(DOMException);
39 39
40 [ObjCLegacyUnnamedParameters] void deleteData(in [IsIndex,Optional=Defau ltIsUndefined] unsigned long offset, 40 [ObjCLegacyUnnamedParameters] void deleteData(in [IsIndex,Optional=Defau ltIsUndefined] unsigned long offset,
41 in [IsIndex,Optional=DefaultIsUndefined] unsigned long length) 41 in [IsIndex,Optional=DefaultIsUndefined] unsigned long length)
42 raises(DOMException); 42 raises(DOMException);
43 43
44 [ObjCLegacyUnnamedParameters] void replaceData(in [IsIndex,Optional=Defa ultIsUndefined] unsigned long offset, 44 [ObjCLegacyUnnamedParameters] void replaceData(in [IsIndex,Optional=Defa ultIsUndefined] unsigned long offset,
45 in [IsIndex,Optional=DefaultIsUndefined] unsigned long length, 45 in [IsIndex,Optional=DefaultIsUndefined] unsigned long length,
46 in [Optional=DefaultIsUndefined] DOMStri ng data) 46 in [Optional=DefaultIsUndefined] DOMStri ng data)
47 raises(DOMException); 47 raises(DOMException);
48 48
49 // DOM 4
50 void remove()
51 raises(DOMException);
52 }; 49 };
53 50
54 } 51 }
OLDNEW
« no previous file with comments | « third_party/WebCore/bindings/scripts/test/TestObj.idl ('k') | third_party/WebCore/dom/Document.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698