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

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

Issue 1156993013: New media playback UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed my own broken unit test. They really work! Created 5 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 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 208
209 [RaisesException] void setDeviceScaleFactor(float scaleFactor); 209 [RaisesException] void setDeviceScaleFactor(float scaleFactor);
210 [RaisesException] void setPageScaleFactor(float scaleFactor); 210 [RaisesException] void setPageScaleFactor(float scaleFactor);
211 [RaisesException] void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor); 211 [RaisesException] void setPageScaleFactorLimits(float minScaleFactor, float maxScaleFactor);
212 212
213 [RaisesException, TypeChecking=Interface] void setIsCursorVisible(Document d ocument, boolean isVisible); 213 [RaisesException, TypeChecking=Interface] void setIsCursorVisible(Document d ocument, boolean isVisible);
214 214
215 [TypeChecking=Interface] double effectiveMediaVolume(HTMLMediaElement mediaE lement); 215 [TypeChecking=Interface] double effectiveMediaVolume(HTMLMediaElement mediaE lement);
216 [TypeChecking=Interface] void mediaPlayerRemoteRouteAvailabilityChanged(HTML MediaElement mediaElement, boolean available); 216 [TypeChecking=Interface] void mediaPlayerRemoteRouteAvailabilityChanged(HTML MediaElement mediaElement, boolean available);
217 [TypeChecking=Interface] void mediaPlayerPlayingRemotelyChanged(HTMLMediaEle ment mediaElement, boolean remote); 217 [TypeChecking=Interface] void mediaPlayerPlayingRemotelyChanged(HTMLMediaEle ment mediaElement, boolean remote);
218 [TypeChecking=Interface] void setAllowHiddenAudioElements(HTMLMediaElement m ediaElement, boolean allow);
218 219
219 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme); 220 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme);
220 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq uence<DOMString> policyAreas); 221 void registerURLSchemeAsBypassingContentSecurityPolicy(DOMString scheme, seq uence<DOMString> policyAreas);
221 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch eme); 222 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(DOMString sch eme);
222 223
223 TypeConversions typeConversions(); 224 TypeConversions typeConversions();
224 225
225 // This is enabled only in Debug builds. 226 // This is enabled only in Debug builds.
226 // This is because we want to avoid putting the byte stream of testing priva te scripts 227 // This is because we want to avoid putting the byte stream of testing priva te scripts
227 // into the binary of Release builds. 228 // into the binary of Release builds.
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 boolean isUseCounted(Document document, long useCounterId); 323 boolean isUseCounted(Document document, long useCounterId);
323 324
324 iterable<long>; 325 iterable<long>;
325 326
326 [Unscopeable] readonly attribute DOMString unscopeableAttribute; 327 [Unscopeable] readonly attribute DOMString unscopeableAttribute;
327 [Unscopeable] DOMString unscopeableMethod(); 328 [Unscopeable] DOMString unscopeableMethod();
328 329
329 ClientRectList focusRingRects(Element element); 330 ClientRectList focusRingRects(Element element);
330 void setCapsLockState(boolean enabled); 331 void setCapsLockState(boolean enabled);
331 }; 332 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698