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

Unified Diff: remoting/codec/video_encoder_vp8.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 | « remoting/codec/audio_decoder_speex.cc ('k') | remoting/host/client_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/codec/video_encoder_vp8.cc
diff --git a/remoting/codec/video_encoder_vp8.cc b/remoting/codec/video_encoder_vp8.cc
index 78240652e9809766c04df092f7b2ffa3b4e47be8..21712aa935b8592776249cf3cb216e5f3ba1c877 100644
--- a/remoting/codec/video_encoder_vp8.cc
+++ b/remoting/codec/video_encoder_vp8.cc
@@ -31,12 +31,9 @@ namespace remoting {
VideoEncoderVp8::VideoEncoderVp8()
: initialized_(false),
- codec_(NULL),
- image_(NULL),
active_map_width_(0),
active_map_height_(0),
- last_timestamp_(0) {
-}
+ last_timestamp_(0) {}
Wez 2013/06/13 17:15:52 nit: Please put the closing brace back on the next
dcheng 2013/06/13 18:28:36 This is the result of clang-format-diff.py. If you
VideoEncoderVp8::~VideoEncoderVp8() {
Destroy();
« no previous file with comments | « remoting/codec/audio_decoder_speex.cc ('k') | remoting/host/client_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698