| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserv
ed. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 | 468 |
| 469 #if PLATFORM(MAC) | 469 #if PLATFORM(MAC) |
| 470 void updateDisableSleep(); | 470 void updateDisableSleep(); |
| 471 bool shouldDisableSleep() const; | 471 bool shouldDisableSleep() const; |
| 472 #endif | 472 #endif |
| 473 | 473 |
| 474 Timer<HTMLMediaElement> m_loadTimer; | 474 Timer<HTMLMediaElement> m_loadTimer; |
| 475 Timer<HTMLMediaElement> m_progressEventTimer; | 475 Timer<HTMLMediaElement> m_progressEventTimer; |
| 476 Timer<HTMLMediaElement> m_playbackProgressTimer; | 476 Timer<HTMLMediaElement> m_playbackProgressTimer; |
| 477 RefPtr<TimeRanges> m_playedTimeRanges; | 477 RefPtr<TimeRanges> m_playedTimeRanges; |
| 478 GenericEventQueue m_asyncEventQueue; | 478 OwnPtr<GenericEventQueue> m_asyncEventQueue; |
| 479 | 479 |
| 480 float m_playbackRate; | 480 float m_playbackRate; |
| 481 float m_defaultPlaybackRate; | 481 float m_defaultPlaybackRate; |
| 482 bool m_webkitPreservesPitch; | 482 bool m_webkitPreservesPitch; |
| 483 NetworkState m_networkState; | 483 NetworkState m_networkState; |
| 484 ReadyState m_readyState; | 484 ReadyState m_readyState; |
| 485 ReadyState m_readyStateMaximum; | 485 ReadyState m_readyStateMaximum; |
| 486 KURL m_currentSrc; | 486 KURL m_currentSrc; |
| 487 | 487 |
| 488 RefPtr<MediaError> m_error; | 488 RefPtr<MediaError> m_error; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 615 return String::format("%p id=%s interval=%f-->%f cue=%s)", cue, cue->id(
).utf8().data(), cue->startTime(), cue->endTime(), cue->text().utf8().data()); | 615 return String::format("%p id=%s interval=%f-->%f cue=%s)", cue, cue->id(
).utf8().data(), cue->startTime(), cue->endTime(), cue->text().utf8().data()); |
| 616 } | 616 } |
| 617 }; | 617 }; |
| 618 #endif | 618 #endif |
| 619 #endif | 619 #endif |
| 620 | 620 |
| 621 } //namespace | 621 } //namespace |
| 622 | 622 |
| 623 #endif | 623 #endif |
| 624 #endif | 624 #endif |
| OLD | NEW |