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

Side by Side Diff: third_party/WebKit/Source/core/testing/Internals.idl

Issue 2447503002: Remove newMediaPlaybackUi flag from content/ and Blink. (Closed)
Patch Set: fix mistake caught by tests Created 4 years, 1 month 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
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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 [RaisesException] float pageScaleFactor(); 216 [RaisesException] float pageScaleFactor();
217 [RaisesException] void setPageScaleFactor(float scaleFactor); 217 [RaisesException] void setPageScaleFactor(float scaleFactor);
218 [RaisesException] void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor); 218 [RaisesException] void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor);
219 219
220 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib le); 220 [RaisesException] void setIsCursorVisible(Document document, boolean isVisib le);
221 221
222 double effectiveMediaVolume(HTMLMediaElement mediaElement); 222 double effectiveMediaVolume(HTMLMediaElement mediaElement);
223 DOMString effectivePreload(HTMLMediaElement mediaElement); 223 DOMString effectivePreload(HTMLMediaElement mediaElement);
224 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement mediaElement , boolean available); 224 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement mediaElement , boolean available);
225 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement mediaElement, boolea n remote); 225 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement mediaElement, boolea n remote);
226 void setAllowHiddenVolumeControls(HTMLMediaElement mediaElement, boolean all ow);
227 226
228 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); 227 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme);
229 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq uence<DOMString> policyAreas); 228 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq uence<DOMString> policyAreas);
230 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch eme); 229 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch eme);
231 230
232 TypeConversions typeConversions(); 231 TypeConversions typeConversions();
233 232
234 // This is enabled only in Debug builds. 233 // This is enabled only in Debug builds.
235 // This is because we want to avoid putting the byte stream of testing priva te scripts 234 // This is because we want to avoid putting the byte stream of testing priva te scripts
236 // into the binary of Release builds. 235 // into the binary of Release builds.
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 DOMString getScrollAnimationState(Node node); 355 DOMString getScrollAnimationState(Node node);
357 356
358 DOMString getProgrammaticScrollAnimationState(Node node); 357 DOMString getProgrammaticScrollAnimationState(Node node);
359 358
360 ClientRect visualRect(Node node); 359 ClientRect visualRect(Node node);
361 360
362 OriginTrialsTest originTrialsTest(); 361 OriginTrialsTest originTrialsTest();
363 362
364 void crash(); 363 void crash();
365 }; 364 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698