diff options
-rw-r--r-- | apps/app_shim/app_shim_host_mac.cc | 4 | ||||
-rw-r--r-- | remoting/host/audio_capturer_mac.cc | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/apps/app_shim/app_shim_host_mac.cc b/apps/app_shim/app_shim_host_mac.cc index 3b4423b..097cb2f 100644 --- a/apps/app_shim/app_shim_host_mac.cc +++ b/apps/app_shim/app_shim_host_mac.cc @@ -14,9 +14,7 @@ #include "content/public/browser/browser_thread.h" #include "ipc/ipc_channel_proxy.h" -AppShimHost::AppShimHost() - : channel_(NULL), profile_(NULL) { -} +AppShimHost::AppShimHost() : profile_(NULL) {} AppShimHost::~AppShimHost() { DCHECK(CalledOnValidThread()); 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 |