diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 13:02:30 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-14 13:02:30 +0000 |
commit | 866a9011b55e131795b7ae80bad238b62c1ece71 (patch) | |
tree | bff791e299b60a3d98137ff45695b00f4408ebb0 /remoting/host | |
parent | 401a2c3992fd04c7e7c1b521708d250621c19bfd (diff) | |
download | chromium_src-866a9011b55e131795b7ae80bad238b62c1ece71.zip chromium_src-866a9011b55e131795b7ae80bad238b62c1ece71.tar.gz chromium_src-866a9011b55e131795b7ae80bad238b62c1ece71.tar.bz2 |
Rewrite scoped_ptr<T>(NULL) to use the default ctor.
This is the result of running the rewrite_scoped_ptr_ctor_null tool
across all files built on Mac.
BUG=173286
R=tapted@chromium.org, wez@chromium.org
Review URL: https://codereview.chromium.org/16844021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206406 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host')
-rw-r--r-- | remoting/host/audio_capturer_mac.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/audio_capturer_mac.cc b/remoting/host/audio_capturer_mac.cc index 1db67c2..e328515 100644 --- a/remoting/host/audio_capturer_mac.cc +++ b/remoting/host/audio_capturer_mac.cc @@ -13,7 +13,7 @@ bool AudioCapturer::IsSupported() { scoped_ptr<AudioCapturer> AudioCapturer::Create() { NOTIMPLEMENTED(); - return scoped_ptr<AudioCapturer>(NULL); + return scoped_ptr<AudioCapturer>(); } } // namespace remoting |