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

Unified Diff: media/test/pipeline_integration_test.cc

Issue 1312763014: Rename WebSourceBuffer::abort -> resetParserState (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/filters/chunk_demuxer_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/test/pipeline_integration_test.cc
diff --git a/media/test/pipeline_integration_test.cc b/media/test/pipeline_integration_test.cc
index 28feb24f33417ef2016aee1b7871309666641e50..9f979cebc601d97664865a8c2292c3823d70b634 100644
--- a/media/test/pipeline_integration_test.cc
+++ b/media/test/pipeline_integration_test.cc
@@ -498,7 +498,7 @@ class MockMediaSource {
void Seek(base::TimeDelta seek_time, int new_position, int seek_append_size) {
chunk_demuxer_->StartWaitingForSeek(seek_time);
- chunk_demuxer_->Abort(
+ chunk_demuxer_->ResetParserState(
kSourceId,
base::TimeDelta(), kInfiniteDuration(), &last_timestamp_offset_);
@@ -562,7 +562,7 @@ class MockMediaSource {
void Shutdown() {
if (!chunk_demuxer_)
return;
- chunk_demuxer_->Abort(
+ chunk_demuxer_->ResetParserState(
kSourceId,
base::TimeDelta(), kInfiniteDuration(), &last_timestamp_offset_);
chunk_demuxer_->Shutdown();
« no previous file with comments | « media/filters/chunk_demuxer_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698