summaryrefslogtreecommitdiffstats
path: root/remoting/host
diff options
context:
space:
mode:
authordcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 13:02:30 +0000
committerdcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 13:02:30 +0000
commit866a9011b55e131795b7ae80bad238b62c1ece71 (patch)
treebff791e299b60a3d98137ff45695b00f4408ebb0 /remoting/host
parent401a2c3992fd04c7e7c1b521708d250621c19bfd (diff)
downloadchromium_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.cc2
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