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

Side by Side Diff: testing/Internals.idl

Issue 14107003: Update WebKit IDLs after chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: reupload again. Created 7 years, 8 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 | « testing/InternalSettings.idl ('k') | workers/AbstractWorker.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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 DOMString[] allIconURLs(in Document document); 225 DOMString[] allIconURLs(in Document document);
226 long numberOfPages(in [Optional] double pageWidthInPixels, in [Optional] dou ble pageHeightInPixels); 226 long numberOfPages(in [Optional] double pageWidthInPixels, in [Optional] dou ble pageHeightInPixels);
227 DOMString pageProperty(in DOMString propertyName, in long pageNumber) raises (DOMException); 227 DOMString pageProperty(in DOMString propertyName, in long pageNumber) raises (DOMException);
228 DOMString pageSizeAndMarginsInPixels(in long pageIndex, in long width, in lo ng height, in long marginTop, in long marginRight, in long marginBottom, in long marginLeft) raises (DOMException); 228 DOMString pageSizeAndMarginsInPixels(in long pageIndex, in long width, in lo ng height, in long marginTop, in long marginRight, in long marginBottom, in long marginLeft) raises (DOMException);
229 229
230 void setPageScaleFactor(in float scaleFactor, in long x, in long y) raises(D OMException); 230 void setPageScaleFactor(in float scaleFactor, in long x, in long y) raises(D OMException);
231 231
232 void setHeaderHeight(in Document document, in float height); 232 void setHeaderHeight(in Document document, in float height);
233 void setFooterHeight(in Document document, in float height); 233 void setFooterHeight(in Document document, in float height);
234 234
235 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API
236 void webkitWillEnterFullScreenForElement(in Document document, in Element el ement); 235 void webkitWillEnterFullScreenForElement(in Document document, in Element el ement);
237 void webkitDidEnterFullScreenForElement(in Document document, in Element ele ment); 236 void webkitDidEnterFullScreenForElement(in Document document, in Element ele ment);
238 void webkitWillExitFullScreenForElement(in Document document, in Element ele ment); 237 void webkitWillExitFullScreenForElement(in Document document, in Element ele ment);
239 void webkitDidExitFullScreenForElement(in Document document, in Element elem ent); 238 void webkitDidExitFullScreenForElement(in Document document, in Element elem ent);
240 #endif
241 239
242 void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString scheme); 240 void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString scheme);
243 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMString scheme); 241 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMString scheme);
244 242
245 MallocStatistics mallocStatistics(); 243 MallocStatistics mallocStatistics();
246 TypeConversions typeConversions(); 244 TypeConversions typeConversions();
247 245
248 DOMString[] getReferencedFilePaths(); 246 DOMString[] getReferencedFilePaths();
249 247
250 // These functions both reset the tracked repaint rects. They are inteded to be used in the following order: 248 // These functions both reset the tracked repaint rects. They are inteded to be used in the following order:
(...skipping 13 matching lines...) Expand all
264 262
265 void forceReload(in boolean endToEnd); 263 void forceReload(in boolean endToEnd);
266 264
267 [Conditional=VIDEO] void simulateAudioInterruption(in Node node); 265 [Conditional=VIDEO] void simulateAudioInterruption(in Node node);
268 266
269 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); 267 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM();
270 268
271 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer(); 269 [Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer();
272 270
273 DOMString getImageSourceURL(in Element element) raises(DOMException); 271 DOMString getImageSourceURL(in Element element) raises(DOMException);
272
273 boolean isSelectPopupVisible(in Node node);
274 }; 274 };
OLDNEW
« no previous file with comments | « testing/InternalSettings.idl ('k') | workers/AbstractWorker.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698