OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 private: | 63 private: |
64 // TextTrackLoaderClient | 64 // TextTrackLoaderClient |
65 virtual void newCuesAvailable(TextTrackLoader*) OVERRIDE; | 65 virtual void newCuesAvailable(TextTrackLoader*) OVERRIDE; |
66 virtual void cueLoadingCompleted(TextTrackLoader*, bool loadingFailed) OVERR
IDE; | 66 virtual void cueLoadingCompleted(TextTrackLoader*, bool loadingFailed) OVERR
IDE; |
67 virtual void newRegionsAvailable(TextTrackLoader*) OVERRIDE; | 67 virtual void newRegionsAvailable(TextTrackLoader*) OVERRIDE; |
68 | 68 |
69 explicit LoadableTextTrack(HTMLTrackElement*); | 69 explicit LoadableTextTrack(HTMLTrackElement*); |
70 | 70 |
71 void loadTimerFired(Timer<LoadableTextTrack>*); | 71 void loadTimerFired(Timer<LoadableTextTrack>*); |
72 | 72 |
73 // FIXME: Oilpan: This should be a strong pointer once Member pointers | 73 RawPtrWillBeMember<HTMLTrackElement> m_trackElement; |
74 // into the Node hierarchy can be used. | |
75 RawPtrWillBeWeakMember<HTMLTrackElement> m_trackElement; | |
76 Timer<LoadableTextTrack> m_loadTimer; | 74 Timer<LoadableTextTrack> m_loadTimer; |
77 OwnPtrWillBeMember<TextTrackLoader> m_loader; | 75 OwnPtrWillBeMember<TextTrackLoader> m_loader; |
78 KURL m_url; | 76 KURL m_url; |
79 bool m_isDefault; | 77 bool m_isDefault; |
80 }; | 78 }; |
81 } // namespace WebCore | 79 } // namespace WebCore |
82 | 80 |
83 #endif | 81 #endif |
OLD | NEW |