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

Side by Side Diff: public/web/WebMediaDevicesRequest.h

Issue 135363004: MediaStream API: Patch #1 of implementing navigator.getMediaDevices (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed year Created 6 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
« no previous file with comments | « public/platform/WebMediaDeviceInfo.h ('k') | public/web/WebUserMediaClient.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 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY GOOGLE INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef WebSourceInfo_h 26 #ifndef WebMediaDevicesRequest_h
27 #define WebSourceInfo_h 27 #define WebMediaDevicesRequest_h
28 28
29 #include "WebCommon.h" 29 #include "WebSecurityOrigin.h"
30 #include "WebNonCopyable.h" 30 #include "public/platform/WebCommon.h"
31 #include "WebPrivatePtr.h" 31 #include "public/platform/WebPrivatePtr.h"
32 #include "WebString.h" 32 #include "public/platform/WebString.h"
33
34 namespace WebCore {
35 class MediaDevicesRequest;
36 }
33 37
34 namespace blink { 38 namespace blink {
39 class WebDocument;
40 class WebMediaDeviceInfo;
41 template <typename T> class WebVector;
35 42
36 class WebSourceInfoPrivate; 43 class WebMediaDevicesRequest {
44 public:
45 WebMediaDevicesRequest() { }
46 WebMediaDevicesRequest(const WebMediaDevicesRequest& request) { assign(reque st); }
47 ~WebMediaDevicesRequest() { reset(); }
37 48
38 class WebSourceInfo { 49 WebMediaDevicesRequest& operator=(const WebMediaDevicesRequest& other)
39 public:
40 enum SourceKind {
41 SourceKindNone,
42 SourceKindAudio,
43 SourceKindVideo
44 };
45
46 enum VideoFacingMode {
47 VideoFacingModeNone,
48 VideoFacingModeUser,
49 VideoFacingModeEnvironment
50 };
51
52 WebSourceInfo() { }
53 WebSourceInfo(const WebSourceInfo& other) { assign(other); }
54 ~WebSourceInfo() { reset(); }
55
56 WebSourceInfo& operator=(const WebSourceInfo& other)
57 { 50 {
58 assign(other); 51 assign(other);
59 return *this; 52 return *this;
60 } 53 }
61 54
62 BLINK_PLATFORM_EXPORT void assign(const WebSourceInfo&); 55 BLINK_EXPORT void reset();
56 bool isNull() const { return m_private.isNull(); }
57 BLINK_EXPORT bool equals(const WebMediaDevicesRequest&) const;
58 BLINK_EXPORT void assign(const WebMediaDevicesRequest&);
63 59
64 BLINK_PLATFORM_EXPORT void initialize(const WebString& id, SourceKind, const WebString& label, VideoFacingMode); 60 BLINK_EXPORT WebSecurityOrigin securityOrigin() const;
65 BLINK_PLATFORM_EXPORT void reset(); 61 BLINK_EXPORT WebDocument ownerDocument() const;
66 bool isNull() const { return m_private.isNull(); }
67 62
68 BLINK_PLATFORM_EXPORT WebString id() const; 63 BLINK_EXPORT void requestSucceeded(WebVector<WebMediaDeviceInfo>);
69 BLINK_PLATFORM_EXPORT SourceKind kind() const; 64
70 BLINK_PLATFORM_EXPORT WebString label() const; 65 #if BLINK_IMPLEMENTATION
71 BLINK_PLATFORM_EXPORT VideoFacingMode facing() const; 66 WebMediaDevicesRequest(const PassRefPtr<WebCore::MediaDevicesRequest>&);
67 WebMediaDevicesRequest(WebCore::MediaDevicesRequest*);
68 operator WebCore::MediaDevicesRequest*() const;
69 #endif
72 70
73 private: 71 private:
74 WebPrivatePtr<WebSourceInfoPrivate> m_private; 72 WebPrivatePtr<WebCore::MediaDevicesRequest> m_private;
75 }; 73 };
76 74
75 inline bool operator==(const WebMediaDevicesRequest& a, const WebMediaDevicesReq uest& b)
76 {
77 return a.equals(b);
78 }
79
77 } // namespace blink 80 } // namespace blink
78 81
79 #endif // WebSourceInfo_h 82 #endif // WebMediaDevicesRequest_h
OLDNEW
« no previous file with comments | « public/platform/WebMediaDeviceInfo.h ('k') | public/web/WebUserMediaClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698