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

Unified Diff: remoting/host/audio_capturer_mac.cc

Issue 16844021: Rewrite scoped_ptr<T>(NULL) to use the default ctor. (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 | « apps/app_shim/app_shim_host_mac.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/audio_capturer_mac.cc
diff --git a/remoting/host/audio_capturer_mac.cc b/remoting/host/audio_capturer_mac.cc
index 1db67c25a05954fd8916cea9f62c3a61224bc28d..e328515bfc268af8f88e31c2981e2d9154a8fddf 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
« no previous file with comments | « apps/app_shim/app_shim_host_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698