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

Unified Diff: media/filters/source_buffer_state.cc

Issue 2691393002: Fix auto raw pointer deduction on linux (Closed)
Patch Set: rebase Created 3 years, 10 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/ffmpeg_demuxer.cc ('k') | media/remoting/proto_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/source_buffer_state.cc
diff --git a/media/filters/source_buffer_state.cc b/media/filters/source_buffer_state.cc
index 868abd7ad87c023302ef591367ff02fafb49d8e7..da9b43c5d19c30ee473c98ecab447f10baf1e578 100644
--- a/media/filters/source_buffer_state.cc
+++ b/media/filters/source_buffer_state.cc
@@ -795,7 +795,7 @@ bool SourceBufferState::OnNewConfigs(
}
void SourceBufferState::SetStreamMemoryLimits() {
- auto cmd_line = base::CommandLine::ForCurrentProcess();
+ auto* cmd_line = base::CommandLine::ForCurrentProcess();
std::string audio_buf_limit_switch =
cmd_line->GetSwitchValueASCII(switches::kMSEAudioBufferSizeLimit);
« no previous file with comments | « media/filters/ffmpeg_demuxer.cc ('k') | media/remoting/proto_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698