Chromium Code Reviews| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 131 m_cueLoadTimer.startOneShot(0, BLINK_FROM_HERE); | 131 m_cueLoadTimer.startOneShot(0, BLINK_FROM_HERE); |
| 132 } | 132 } |
| 133 | 133 |
| 134 void TextTrackLoader::newRegionsParsed() | 134 void TextTrackLoader::newRegionsParsed() |
| 135 { | 135 { |
| 136 m_client->newRegionsAvailable(this); | 136 m_client->newRegionsAvailable(this); |
| 137 } | 137 } |
| 138 | 138 |
| 139 void TextTrackLoader::fileFailedToParse() | 139 void TextTrackLoader::fileFailedToParse() |
| 140 { | 140 { |
| 141 WTF_LOG(Media, "TextTrackLoader::fileFailedToParse"); | 141 DVLOG(3) << "fileFailedToParse"; |
|
fs
2016/05/19 11:05:36
Just drop this log-statement.
Srirama
2016/05/19 12:14:54
Done.
| |
| 142 | 142 |
| 143 m_state = Failed; | 143 m_state = Failed; |
| 144 | 144 |
| 145 if (!m_cueLoadTimer.isActive()) | 145 if (!m_cueLoadTimer.isActive()) |
| 146 m_cueLoadTimer.startOneShot(0, BLINK_FROM_HERE); | 146 m_cueLoadTimer.startOneShot(0, BLINK_FROM_HERE); |
| 147 | 147 |
| 148 cancelLoad(); | 148 cancelLoad(); |
| 149 } | 149 } |
| 150 | 150 |
| 151 void TextTrackLoader::getNewCues(HeapVector<Member<TextTrackCue>>& outputCues) | 151 void TextTrackLoader::getNewCues(HeapVector<Member<TextTrackCue>>& outputCues) |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 165 DEFINE_TRACE(TextTrackLoader) | 165 DEFINE_TRACE(TextTrackLoader) |
| 166 { | 166 { |
| 167 visitor->trace(m_client); | 167 visitor->trace(m_client); |
| 168 visitor->trace(m_cueParser); | 168 visitor->trace(m_cueParser); |
| 169 visitor->trace(m_document); | 169 visitor->trace(m_document); |
| 170 ResourceOwner<RawResource>::trace(visitor); | 170 ResourceOwner<RawResource>::trace(visitor); |
| 171 VTTParserClient::trace(visitor); | 171 VTTParserClient::trace(visitor); |
| 172 } | 172 } |
| 173 | 173 |
| 174 } // namespace blink | 174 } // namespace blink |
| OLD | NEW |