OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * Copyright (C) 2012, 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2012, 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 are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 double endTime() const { return m_endTime; } | 65 double endTime() const { return m_endTime; } |
66 void setEndTime(double, ExceptionState&); | 66 void setEndTime(double, ExceptionState&); |
67 | 67 |
68 bool pauseOnExit() const { return m_pauseOnExit; } | 68 bool pauseOnExit() const { return m_pauseOnExit; } |
69 void setPauseOnExit(bool); | 69 void setPauseOnExit(bool); |
70 | 70 |
71 int cueIndex(); | 71 int cueIndex(); |
72 void invalidateCueIndex(); | 72 void invalidateCueIndex(); |
73 | 73 |
74 using EventTarget::dispatchEvent; | 74 using EventTarget::dispatchEvent; |
75 virtual bool dispatchEvent(PassRefPtr<Event>) OVERRIDE; | 75 virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) OVERRIDE; |
76 | 76 |
77 bool isActive(); | 77 bool isActive(); |
78 void setIsActive(bool); | 78 void setIsActive(bool); |
79 | 79 |
80 virtual void updateDisplay(const IntSize& videoSize, HTMLDivElement& contain
er) = 0; | 80 virtual void updateDisplay(const IntSize& videoSize, HTMLDivElement& contain
er) = 0; |
81 | 81 |
82 // FIXME: Consider refactoring to eliminate or merge the following three mem
bers. | 82 // FIXME: Consider refactoring to eliminate or merge the following three mem
bers. |
83 // https://code.google.com/p/chromium/issues/detail?id=322434 | 83 // https://code.google.com/p/chromium/issues/detail?id=322434 |
84 virtual void updateDisplayTree(double movieTime) = 0; | 84 virtual void updateDisplayTree(double movieTime) = 0; |
85 virtual void removeDisplayTree() = 0; | 85 virtual void removeDisplayTree() = 0; |
(...skipping 22 matching lines...) Expand all Loading... |
108 | 108 |
109 TextTrack* m_track; | 109 TextTrack* m_track; |
110 | 110 |
111 bool m_isActive : 1; | 111 bool m_isActive : 1; |
112 bool m_pauseOnExit : 1; | 112 bool m_pauseOnExit : 1; |
113 }; | 113 }; |
114 | 114 |
115 } // namespace WebCore | 115 } // namespace WebCore |
116 | 116 |
117 #endif | 117 #endif |
OLD | NEW |