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

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

Issue 650893002: [Cast] Disable autohide of media controls for remote playback (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added LayoutTest Created 6 years, 2 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti onState& = ASSERT_NO_EXCEPTION) const; 247 String pageSizeAndMarginsInPixels(int, int, int, int, int, int, int, Excepti onState& = ASSERT_NO_EXCEPTION) const;
248 248
249 void setDeviceScaleFactor(float scaleFactor, ExceptionState&); 249 void setDeviceScaleFactor(float scaleFactor, ExceptionState&);
250 250
251 void setIsCursorVisible(Document*, bool, ExceptionState&); 251 void setIsCursorVisible(Document*, bool, ExceptionState&);
252 252
253 void mediaPlayerRequestFullscreen(HTMLMediaElement*); 253 void mediaPlayerRequestFullscreen(HTMLMediaElement*);
254 double effectiveMediaVolume(HTMLMediaElement*); 254 double effectiveMediaVolume(HTMLMediaElement*);
255 255
256 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement *, bool); 256 void mediaPlayerRemoteRouteAvailabilityChanged(HTMLMediaElement *, bool);
257 void mediaPlayerPlayingRemotelyChanged(HTMLMediaElement *, bool);
Peter Beverloo 2014/10/13 16:37:24 nit: no space before the *. you should fix line 25
whywhat 2014/10/13 16:56:28 Done.
257 258
258 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme) ; 259 void registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme) ;
259 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme); 260 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme);
260 261
261 TypeConversions* typeConversions() const; 262 TypeConversions* typeConversions() const;
262 PrivateScriptTest* privateScriptTest() const; 263 PrivateScriptTest* privateScriptTest() const;
263 DictionaryTest* dictionaryTest() const; 264 DictionaryTest* dictionaryTest() const;
264 265
265 Vector<String> getReferencedFilePaths() const; 266 Vector<String> getReferencedFilePaths() const;
266 267
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&); 337 PassRefPtrWillBeRawPtr<ClientRectList> annotatedRegions(Document*, bool drag gable, ExceptionState&);
337 338
338 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&); 339 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionState&);
339 Member<InternalRuntimeFlags> m_runtimeFlags; 340 Member<InternalRuntimeFlags> m_runtimeFlags;
340 Member<InternalProfilers> m_profilers; 341 Member<InternalProfilers> m_profilers;
341 }; 342 };
342 343
343 } // namespace blink 344 } // namespace blink
344 345
345 #endif // Internals_h 346 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698