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

Unified Diff: third_party/WebCore/testing/Internals.idl

Issue 10769002: Roll IDL to multivm@683 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix notifications path in fremontcut. Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebCore/testing/InternalSettings.idl ('k') | third_party/WebCore/xml/XMLHttpRequest.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/testing/Internals.idl
diff --git a/third_party/WebCore/testing/Internals.idl b/third_party/WebCore/testing/Internals.idl
index 8191d5fd0b8232bc6df101de81e5a9b7593130c9..2f17f5558e2585bd22f26276cdefe2cb0a700335 100644
--- a/third_party/WebCore/testing/Internals.idl
+++ b/third_party/WebCore/testing/Internals.idl
@@ -55,6 +55,7 @@ module window {
Element getElementByIdInShadowRoot(in Node shadowRoot, in DOMString id) raises(DOMException);
boolean isValidContentSelect(in Element contentElement) raises(DOMException);
Node treeScopeRootNode(in Node node) raises (DOMException);
+ Node parentTreeScope(in Node node) raises (DOMException);
Node nextSiblingByWalker(in Node node) raises(DOMException);
Node firstChildByWalker(in Node node) raises(DOMException);
@@ -131,6 +132,7 @@ module window {
boolean hasSpellingMarker(in Document document, in long from, in long length) raises (DOMException);
boolean hasGrammarMarker(in Document document, in long from, in long length) raises (DOMException);
+ boolean hasAutocorrectedMarker(in Document document, in long from, in long length) raises (DOMException);
unsigned long numberOfScrollableAreas(in Document document) raises (DOMException);
@@ -148,7 +150,7 @@ module window {
#endif
#if defined(ENABLE_NETWORK_INFO) && ENABLE_NETWORK_INFO
- void setNetworkInformation(in Document document, in DOMString eventType, in long bandwidth, in boolean metered) raises (DOMException);
+ void setNetworkInformation(in Document document, in DOMString eventType, in double bandwidth, in boolean metered) raises (DOMException);
#endif
[Conditional=INSPECTOR] unsigned long numberOfLiveNodes();
@@ -163,6 +165,9 @@ module window {
void webkitWillExitFullScreenForElement(in Document document, in Element element);
void webkitDidExitFullScreenForElement(in Document document, in Element element);
#endif
+
+ void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString scheme);
+ void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMString scheme);
};
}
« no previous file with comments | « third_party/WebCore/testing/InternalSettings.idl ('k') | third_party/WebCore/xml/XMLHttpRequest.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698