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

Side by Side Diff: media/audio/audio_device_description.cc

Issue 2656523002: Rename media_resources -> localized_strings (Closed)
Patch Set: rebase Created 3 years, 10 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 "base/logging.h" 5 #include "base/logging.h"
6 #include "media/audio/audio_device_description.h" 6 #include "media/audio/audio_device_description.h"
7 #include "media/base/media_resources.h" 7 #include "media/base/localized_strings.h"
8 8
9 namespace media { 9 namespace media {
10 const char AudioDeviceDescription::kDefaultDeviceId[] = "default"; 10 const char AudioDeviceDescription::kDefaultDeviceId[] = "default";
11 const char AudioDeviceDescription::kCommunicationsDeviceId[] = "communications"; 11 const char AudioDeviceDescription::kCommunicationsDeviceId[] = "communications";
12 const char AudioDeviceDescription::kLoopbackInputDeviceId[] = "loopback"; 12 const char AudioDeviceDescription::kLoopbackInputDeviceId[] = "loopback";
13 const char AudioDeviceDescription::kLoopbackWithMuteDeviceId[] = 13 const char AudioDeviceDescription::kLoopbackWithMuteDeviceId[] =
14 "loopbackWithMute"; 14 "loopbackWithMute";
15 15
16 // static 16 // static
17 bool AudioDeviceDescription::IsDefaultDevice(const std::string& device_id) { 17 bool AudioDeviceDescription::IsDefaultDevice(const std::string& device_id) {
(...skipping 27 matching lines...) Expand all
45 return ""; 45 return "";
46 #endif 46 #endif
47 } 47 }
48 48
49 AudioDeviceDescription::AudioDeviceDescription(const std::string& device_name, 49 AudioDeviceDescription::AudioDeviceDescription(const std::string& device_name,
50 const std::string& unique_id, 50 const std::string& unique_id,
51 const std::string& group_id) 51 const std::string& group_id)
52 : device_name(device_name), unique_id(unique_id), group_id(group_id) {} 52 : device_name(device_name), unique_id(unique_id), group_id(group_id) {}
53 53
54 } // namespace media 54 } // namespace media
OLDNEW
« no previous file with comments | « chrome/renderer/chrome_render_thread_observer.cc ('k') | media/audio/cras/audio_manager_cras.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698