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

Side by Side Diff: remoting/host/audio_capturer_linux.cc

Issue 609923004: Cleanup usage of scoped_ptr<> in remoting for C++11 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/host/audio_capturer_linux.h" 5 #include "remoting/host/audio_capturer_linux.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/lazy_instance.h" 8 #include "base/lazy_instance.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "remoting/proto/audio.pb.h" 10 #include "remoting/proto/audio.pb.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 } 76 }
77 77
78 bool AudioCapturer::IsSupported() { 78 bool AudioCapturer::IsSupported() {
79 return g_pulseaudio_pipe_sink_reader.Get().get() != NULL; 79 return g_pulseaudio_pipe_sink_reader.Get().get() != NULL;
80 } 80 }
81 81
82 scoped_ptr<AudioCapturer> AudioCapturer::Create() { 82 scoped_ptr<AudioCapturer> AudioCapturer::Create() {
83 scoped_refptr<AudioPipeReader> reader = 83 scoped_refptr<AudioPipeReader> reader =
84 g_pulseaudio_pipe_sink_reader.Get(); 84 g_pulseaudio_pipe_sink_reader.Get();
85 if (!reader.get()) 85 if (!reader.get())
86 return scoped_ptr<AudioCapturer>(); 86 return nullptr;
87 return scoped_ptr<AudioCapturer>(new AudioCapturerLinux(reader)); 87 return scoped_ptr<AudioCapturer>(new AudioCapturerLinux(reader));
88 } 88 }
89 89
90 } // namespace remoting 90 } // namespace remoting
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698