diff options
author | mcasas <mcasas@chromium.org> | 2014-10-11 13:22:17 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-11 20:22:44 +0000 |
commit | fcb5c7de8085887dae1359a12c74df1f44692b72 (patch) | |
tree | a65762ce66e8512ef952fad920ba5987381078dc /content/browser/resources/media/main.js | |
parent | b3fd4162ccc8c9809e6894088a4c46cbe8ccc2e2 (diff) | |
download | chromium_src-fcb5c7de8085887dae1359a12c74df1f44692b72.zip chromium_src-fcb5c7de8085887dae1359a12c74df1f44692b72.tar.gz chromium_src-fcb5c7de8085887dae1359a12c74df1f44692b72.tar.bz2 |
chrome://media-internals: update MediaInternals when devices capabilities are enumerated.
Ping MediaInternals with the capabilities list from VideoCaptureManager. \
Moved VideoCaptureManager::DeviceInfo to media::VideoCaptureDeviceInfo in its
own file. This is used from VCM to send the list of video capture devices to
MediaInternals, after enumeration.
Sprinkle some nice "const auto &" and range for loops on the affected areas,
those features are approved [1].
[1] http://chromium-cpp.appspot.com/
BUG=344882
Review URL: https://codereview.chromium.org/616833004
Cr-Commit-Position: refs/heads/master@{#299251}
Diffstat (limited to 'content/browser/resources/media/main.js')
-rw-r--r-- | content/browser/resources/media/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/resources/media/main.js b/content/browser/resources/media/main.js index cb239da..ee406b1 100644 --- a/content/browser/resources/media/main.js +++ b/content/browser/resources/media/main.js @@ -39,7 +39,7 @@ var media = (function() { manager = theManager; }; - media.onReceiveEverything = function(everything) { + media.onReceiveAudioStreamData = function(everything) { for (var component in everything) { media.updateAudioComponent(everything[component]); } |