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

Side by Side Diff: core/page/Selection.idl

Issue 126143003: Update IDL to Chrome 32 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Add new files Created 6 years, 11 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 | « core/page/SecurityPolicy.idl ('k') | core/page/SpeechInputEvent.idl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Google Inc. All rights reserved. 3 * Copyright (C) 2009 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 27 matching lines...) Expand all
38 readonly attribute long focusOffset; 38 readonly attribute long focusOffset;
39 39
40 readonly attribute boolean isCollapsed; 40 readonly attribute boolean isCollapsed;
41 readonly attribute long rangeCount; 41 readonly attribute long rangeCount;
42 42
43 [RaisesException] void collapse([Default=Undefined] optional Node node, 43 [RaisesException] void collapse([Default=Undefined] optional Node node,
44 [Default=Undefined] optional long index); 44 [Default=Undefined] optional long index);
45 [RaisesException] void collapseToEnd(); 45 [RaisesException] void collapseToEnd();
46 [RaisesException] void collapseToStart(); 46 [RaisesException] void collapseToStart();
47 47
48 [CustomElementCallbacks=Enable] void deleteFromDocument(); 48 [CustomElementCallbacks] void deleteFromDocument();
49 boolean containsNode([Default=Undefined] optional Node node, 49 boolean containsNode([Default=Undefined] optional Node node,
50 [Default=Undefined] optional boolean allowPartial); 50 [Default=Undefined] optional boolean allowPartial);
51 [RaisesException] void selectAllChildren([Default=Undefined] optional Node n ode); 51 [RaisesException] void selectAllChildren([Default=Undefined] optional Node n ode);
52 52
53 [RaisesException] void extend([Default=Undefined] optional Node node, 53 [RaisesException] void extend([Default=Undefined] optional Node node,
54 [Default=Undefined] optional long offset); 54 [Default=Undefined] optional long offset);
55 55
56 [RaisesException] Range getRangeAt([Default=Undefined] optional long index); 56 [RaisesException] Range getRangeAt([Default=Undefined] optional long index);
57 void removeAllRanges(); 57 void removeAllRanges();
58 void addRange([Default=Undefined] optional Range range); 58 void addRange([Default=Undefined] optional Range range);
(...skipping 18 matching lines...) Expand all
77 [Default=Undefined] optional Node extentNode, 77 [Default=Undefined] optional Node extentNode,
78 [Default=Undefined] optional long extentOffset); 78 [Default=Undefined] optional long extentOffset);
79 [RaisesException] void setPosition([Default=Undefined] optional Node node, 79 [RaisesException] void setPosition([Default=Undefined] optional Node node,
80 [Default=Undefined] optional long offset); 80 [Default=Undefined] optional long offset);
81 81
82 // IE extentions 82 // IE extentions
83 // http://msdn.microsoft.com/en-us/library/ms535869(VS.85).aspx 83 // http://msdn.microsoft.com/en-us/library/ms535869(VS.85).aspx
84 void empty(); 84 void empty();
85 }; 85 };
86 86
OLDNEW
« no previous file with comments | « core/page/SecurityPolicy.idl ('k') | core/page/SpeechInputEvent.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698