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

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

Issue 10800016: Roll IDL to multivm@707 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/page/DOMWindow.idl ('k') | third_party/WebCore/testing/Internals.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/testing/InternalSettings.idl
diff --git a/third_party/WebCore/testing/InternalSettings.idl b/third_party/WebCore/testing/InternalSettings.idl
index 1965f05e7b6834ff5c5d38cb89018dbce68bc4f6..16935d2373542eb6f6d0701a606ec221aa990575 100644
--- a/third_party/WebCore/testing/InternalSettings.idl
+++ b/third_party/WebCore/testing/InternalSettings.idl
@@ -51,6 +51,8 @@ module window {
void setCursiveFontFamily(in DOMString family, in DOMString script) raises(DOMException);
void setFantasyFontFamily(in DOMString family, in DOMString script) raises(DOMException);
void setPictographFontFamily(in DOMString family, in DOMString script) raises(DOMException);
+ void setTextAutosizingEnabled(in boolean enabled) raises(DOMException);
+ void setTextAutosizingWindowSizeOverride(in long width, in long height) raises(DOMException);
void setEnableScrollAnimator(in boolean enabled) raises(DOMException);
boolean scrollAnimatorEnabled() raises(DOMException);
void setCSSExclusionsEnabled(in boolean enabled) raises(DOMException);
@@ -62,6 +64,16 @@ module window {
void setSyncXHRInDocumentsEnabled(in boolean enabled) raises(DOMException);
void setJavaScriptProfilingEnabled(in boolean creates) raises(DOMException);
void setWindowFocusRestricted(in boolean restricted) raises(DOMException);
+ void setDialogElementEnabled(in boolean enabled) raises(DOMException);
+
+ void setPagination(in DOMString mode, in long gap) raises(DOMException);
+ sequence<String> userPreferredLanguages();
+ void setUserPreferredLanguages(in sequence<String> languages);
+ void allowRoundingHacks();
+#if defined(ENABLE_VIDEO_TRACK) && ENABLE_VIDEO_TRACK
+ void setShouldDisplayTrackKind(in DOMString kind, in boolean enabled) raises (DOMException);
+ boolean shouldDisplayTrackKind(in DOMString trackKind) raises (DOMException);
+#endif
};
}
« no previous file with comments | « third_party/WebCore/page/DOMWindow.idl ('k') | third_party/WebCore/testing/Internals.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698