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: third_party/WebCore/testing/Internals.idl

Issue 10911186: Roll WebKit IDL to multivm@858 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 #if defined(ENABLE_VIDEO_TRACK) && ENABLE_VIDEO_TRACK 128 #if defined(ENABLE_VIDEO_TRACK) && ENABLE_VIDEO_TRACK
129 void setShouldDisplayTrackKind(in Document document, in DOMString kind, in boolean enabled) raises (DOMException); 129 void setShouldDisplayTrackKind(in Document document, in DOMString kind, in boolean enabled) raises (DOMException);
130 boolean shouldDisplayTrackKind(in Document document, in DOMString trackK ind) raises (DOMException); 130 boolean shouldDisplayTrackKind(in Document document, in DOMString trackK ind) raises (DOMException);
131 #endif 131 #endif
132 132
133 sequence<String> userPreferredLanguages(); 133 sequence<String> userPreferredLanguages();
134 void setUserPreferredLanguages(in sequence<String> languages); 134 void setUserPreferredLanguages(in sequence<String> languages);
135 135
136 unsigned long wheelEventHandlerCount(in Document document) raises (DOMEx ception); 136 unsigned long wheelEventHandlerCount(in Document document) raises (DOMEx ception);
137 unsigned long touchEventHandlerCount(in Document document) raises (DOMEx ception); 137 unsigned long touchEventHandlerCount(in Document document) raises (DOMEx ception);
138 boolean hasTouchEventListener(in Document document) raises (DOMException );
139 138
140 NodeList nodesFromRect(in Document document, in long x, in long y, 139 NodeList nodesFromRect(in Document document, in long x, in long y,
141 in unsigned long topPadding, in unsigned long rightPadding, in unsig ned long bottomPadding, in unsigned long leftPadding, 140 in unsigned long topPadding, in unsigned long rightPadding, in unsig ned long bottomPadding, in unsigned long leftPadding,
142 in boolean ignoreClipping, in boolean allowShadowContent) raises (DO MException); 141 in boolean ignoreClipping, in boolean allowShadowContent, in boolean allowChildFrameContent) raises (DOMException);
143 142
144 void emitInspectorDidBeginFrame(); 143 void emitInspectorDidBeginFrame();
145 void emitInspectorDidCancelFrame(); 144 void emitInspectorDidCancelFrame();
146 145
147 boolean hasSpellingMarker(in Document document, in long from, in long le ngth) raises (DOMException); 146 boolean hasSpellingMarker(in Document document, in long from, in long le ngth) raises (DOMException);
148 boolean hasGrammarMarker(in Document document, in long from, in long len gth) raises (DOMException); 147 boolean hasGrammarMarker(in Document document, in long from, in long len gth) raises (DOMException);
149 boolean hasAutocorrectedMarker(in Document document, in long from, in lo ng length) raises (DOMException); 148 boolean hasAutocorrectedMarker(in Document document, in long from, in lo ng length) raises (DOMException);
150 149
151 unsigned long numberOfScrollableAreas(in Document document) raises (DOME xception); 150 unsigned long numberOfScrollableAreas(in Document document) raises (DOME xception);
152 151
(...skipping 16 matching lines...) Expand all
169 void setNetworkInformation(in Document document, in DOMString eventType, in double bandwidth, in boolean metered) raises (DOMException); 168 void setNetworkInformation(in Document document, in DOMString eventType, in double bandwidth, in boolean metered) raises (DOMException);
170 #endif 169 #endif
171 170
172 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes(); 171 [Conditional=INSPECTOR] unsigned long numberOfLiveNodes();
173 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments(); 172 [Conditional=INSPECTOR] unsigned long numberOfLiveDocuments();
174 [Conditional=INSPECTOR] sequence<String> consoleMessageArgumentCounts(in Document document); 173 [Conditional=INSPECTOR] sequence<String> consoleMessageArgumentCounts(in Document document);
175 174
176 DOMString counterValue(in Element element); 175 DOMString counterValue(in Element element);
177 long pageNumber(in Element element, in [Optional] float pageWidth, in [O ptional] float pageHeight); 176 long pageNumber(in Element element, in [Optional] float pageWidth, in [O ptional] float pageHeight);
178 DOMString[] iconURLs(in Document document); 177 DOMString[] iconURLs(in Document document);
178 long numberOfPages(in [Optional] double pageWidthInPixels, in [Optional] double pageHeightInPixels);
179 DOMString pageProperty(in DOMString propertyName, in long pageNumber) ra ises (DOMException);
180 DOMString pageSizeAndMarginsInPixels(in long pageIndex, in long width, i n long height, in long marginTop, in long marginRight, in long marginBottom, in long marginLeft) raises (DOMException);
181
179 182
180 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API 183 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API
181 void webkitWillEnterFullScreenForElement(in Document document, in Elemen t element); 184 void webkitWillEnterFullScreenForElement(in Document document, in Elemen t element);
182 void webkitDidEnterFullScreenForElement(in Document document, in Element element); 185 void webkitDidEnterFullScreenForElement(in Document document, in Element element);
183 void webkitWillExitFullScreenForElement(in Document document, in Element element); 186 void webkitWillExitFullScreenForElement(in Document document, in Element element);
184 void webkitDidExitFullScreenForElement(in Document document, in Element element); 187 void webkitDidExitFullScreenForElement(in Document document, in Element element);
185 #endif 188 #endif
186 189
187 void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString sche me); 190 void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString sche me);
188 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMStr ing scheme); 191 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMStr ing scheme);
189 192
190 MallocStatistics mallocStatistics(); 193 MallocStatistics mallocStatistics();
191 194
192 DOMString[] getReferencedFilePaths(); 195 DOMString[] getReferencedFilePaths();
193 }; 196 };
194 } 197 }
195 198
OLDNEW
« no previous file with comments | « third_party/WebCore/testing/InternalSettings.idl ('k') | third_party/WebCore/xml/XSLTProcessor.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698