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

Unified Diff: media/audio/audio_device_name.h

Issue 8361031: Reland the CL 8162015. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | media/audio/audio_device_name.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/audio_device_name.h
diff --git a/media/audio/audio_device_name.h b/media/audio/audio_device_name.h
index ef3cd77db7cab93e7babd81c93e8b4810c236ab4..aa3cca0da8b5e41a171cca2e363f23f8c7e8f31a 100644
--- a/media/audio/audio_device_name.h
+++ b/media/audio/audio_device_name.h
@@ -7,11 +7,16 @@
#include <list>
#include <string>
+#include "media/base/media_export.h"
namespace media {
-struct AudioDeviceName {
- std::string device_name; // Name and also display name of the device.
+struct MEDIA_EXPORT AudioDeviceName {
+ AudioDeviceName();
+ AudioDeviceName(const std::string& device_name,
+ const std::string& unique_id);
+
+ std::string device_name; // Friendly name of the device.
std::string unique_id; // Unique identifier for the device.
};
« no previous file with comments | « no previous file | media/audio/audio_device_name.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698