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

Side by Side Diff: third_party/WebKit/Source/core/html/shadow/MediaControlElementTypes.h

Issue 2767823002: Media Remoting: Add interstitial elements to media element shadow dom. (Closed)
Patch Set: Remove cast text message element. Not assuming remoting interstitial is media control. Created 3 years, 8 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) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 MediaVolumeSliderThumb, 61 MediaVolumeSliderThumb,
62 MediaExitFullscreenButton, 62 MediaExitFullscreenButton,
63 MediaOverlayPlayButton, 63 MediaOverlayPlayButton,
64 MediaCastOffButton, 64 MediaCastOffButton,
65 MediaCastOnButton, 65 MediaCastOnButton,
66 MediaOverlayCastOffButton, 66 MediaOverlayCastOffButton,
67 MediaOverlayCastOnButton, 67 MediaOverlayCastOnButton,
68 MediaOverflowButton, 68 MediaOverflowButton,
69 MediaOverflowList, 69 MediaOverflowList,
70 MediaDownloadButton, 70 MediaDownloadButton,
71 MediaRemotingCastIcon,
71 }; 72 };
72 73
73 CORE_EXPORT const HTMLMediaElement* toParentMediaElement(const Node*); 74 CORE_EXPORT const HTMLMediaElement* toParentMediaElement(const Node*);
74 CORE_EXPORT const HTMLMediaElement* toParentMediaElement(const LayoutObject&); 75 CORE_EXPORT const HTMLMediaElement* toParentMediaElement(const LayoutObject&);
75 76
76 CORE_EXPORT MediaControlElementType mediaControlElementType(const Node*); 77 CORE_EXPORT MediaControlElementType mediaControlElementType(const Node*);
77 78
78 // ---------------------------- 79 // ----------------------------
79 80
80 // TODO(mustaq): The Media control elements that use MouseEvents should be 81 // TODO(mustaq): The Media control elements that use MouseEvents should be
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 protected: 202 protected:
202 MediaControlTimeDisplayElement(MediaControls&, MediaControlElementType); 203 MediaControlTimeDisplayElement(MediaControls&, MediaControlElementType);
203 204
204 private: 205 private:
205 double m_currentValue; 206 double m_currentValue;
206 }; 207 };
207 208
208 } // namespace blink 209 } // namespace blink
209 210
210 #endif // MediaControlElementTypes_h 211 #endif // MediaControlElementTypes_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698