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

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

Issue 2447503002: Remove newMediaPlaybackUi flag from content/ and Blink. (Closed)
Patch Set: remove missing usage 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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 365
366 bool magnifyScaleAroundAnchor(float factor, float x, float y); 366 bool magnifyScaleAroundAnchor(float factor, float x, float y);
367 367
368 void setIsCursorVisible(Document*, bool, ExceptionState&); 368 void setIsCursorVisible(Document*, bool, ExceptionState&);
369 369
370 double effectiveMediaVolume(HTMLMediaElement*); 370 double effectiveMediaVolume(HTMLMediaElement*);
371 String effectivePreload(HTMLMediaElement*); 371 String effectivePreload(HTMLMediaElement*);
372 372
373 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool); 373 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement*, bool);
374 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool); 374 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement*, bool);
375 void setAllowHiddenVolumeControls(HTMLMediaElement*, bool);
376 375
377 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme); 376 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme);
378 void registerURLSchemeAsBypassingContentSecurityPolicy( 377 void registerURLSchemeAsBypassingContentSecurityPolicy(
379 const String& scheme, 378 const String& scheme,
380 const Vector<String>& policyAreas); 379 const Vector<String>& policyAreas);
381 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy( 380 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(
382 const String& scheme); 381 const String& scheme);
383 382
384 TypeConversions* typeConversions() const; 383 TypeConversions* typeConversions() const;
385 PrivateScriptTest* privateScriptTest() const; 384 PrivateScriptTest* privateScriptTest() const;
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 unsigned index, 541 unsigned index,
543 ExceptionState&); 542 ExceptionState&);
544 Member<InternalRuntimeFlags> m_runtimeFlags; 543 Member<InternalRuntimeFlags> m_runtimeFlags;
545 544
546 IterationSource* startIteration(ScriptState*, ExceptionState&) override; 545 IterationSource* startIteration(ScriptState*, ExceptionState&) override;
547 }; 546 };
548 547
549 } // namespace blink 548 } // namespace blink
550 549
551 #endif // Internals_h 550 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698