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

Unified Diff: remoting/codec/audio_decoder.cc

Issue 16964002: Rewrite scoped_ptr<T>(NULL) to use the default ctor in remoting/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | « no previous file | remoting/codec/audio_decoder_speex.cc » ('j') | remoting/codec/video_encoder_vp8.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/audio_decoder.cc
diff --git a/remoting/codec/audio_decoder.cc b/remoting/codec/audio_decoder.cc
index 3dc70c30276561794ed2df2dc4a5b72bf4630898..94c30b402de813b78e930c7baaf093018be55133 100644
--- a/remoting/codec/audio_decoder.cc
+++ b/remoting/codec/audio_decoder.cc
@@ -25,7 +25,7 @@ scoped_ptr<AudioDecoder> AudioDecoder::CreateAudioDecoder(
}
NOTIMPLEMENTED();
- return scoped_ptr<AudioDecoder>(NULL);
+ return scoped_ptr<AudioDecoder>();
}
} // namespace remoting
« no previous file with comments | « no previous file | remoting/codec/audio_decoder_speex.cc » ('j') | remoting/codec/video_encoder_vp8.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698