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

Side by Side Diff: content/public/common/media_stream_request.h

Issue 1907973003: media: Move audio_parameters and audio_point to media/base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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
« no previous file with comments | « content/public/common/DEPS ('k') | content/renderer/media/audio_renderer_mixer_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef CONTENT_PUBLIC_COMMON_MEDIA_STREAM_REQUEST_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_MEDIA_STREAM_REQUEST_H_
6 #define CONTENT_PUBLIC_COMMON_MEDIA_STREAM_REQUEST_H_ 6 #define CONTENT_PUBLIC_COMMON_MEDIA_STREAM_REQUEST_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <map> 10 #include <map>
11 #include <memory> 11 #include <memory>
12 #include <string> 12 #include <string>
13 #include <vector> 13 #include <vector>
14 14
15 #include "base/callback_forward.h" 15 #include "base/callback_forward.h"
16 #include "content/common/content_export.h" 16 #include "content/common/content_export.h"
17 #include "media/audio/audio_parameters.h" 17 #include "media/base/audio_parameters.h"
18 #include "ui/gfx/native_widget_types.h" 18 #include "ui/gfx/native_widget_types.h"
19 #include "url/gurl.h" 19 #include "url/gurl.h"
20 20
21 namespace content { 21 namespace content {
22 22
23 // Types of media streams. 23 // Types of media streams.
24 enum MediaStreamType { 24 enum MediaStreamType {
25 MEDIA_NO_SERVICE = 0, 25 MEDIA_NO_SERVICE = 0,
26 26
27 // A device provided by the operating system (e.g., webcam input). 27 // A device provided by the operating system (e.g., webcam input).
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 265
266 // Callback used return results of media access requests. 266 // Callback used return results of media access requests.
267 typedef base::Callback<void(const MediaStreamDevices& devices, 267 typedef base::Callback<void(const MediaStreamDevices& devices,
268 content::MediaStreamRequestResult result, 268 content::MediaStreamRequestResult result,
269 std::unique_ptr<MediaStreamUI> ui)> 269 std::unique_ptr<MediaStreamUI> ui)>
270 MediaResponseCallback; 270 MediaResponseCallback;
271 271
272 } // namespace content 272 } // namespace content
273 273
274 #endif // CONTENT_PUBLIC_COMMON_MEDIA_STREAM_REQUEST_H_ 274 #endif // CONTENT_PUBLIC_COMMON_MEDIA_STREAM_REQUEST_H_
OLDNEW
« no previous file with comments | « content/public/common/DEPS ('k') | content/renderer/media/audio_renderer_mixer_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698