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

Side by Side Diff: third_party/WebKit/public/web/WebMediaDeviceChangeObserver.h

Issue 2883793003: Move detached files from web/ to (core/modules)/exported. (Closed)
Patch Set: Created 3 years, 7 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 #ifndef WebMediaDeviceChangeObserver_h 5 #ifndef WebMediaDeviceChangeObserver_h
6 #define WebMediaDeviceChangeObserver_h 6 #define WebMediaDeviceChangeObserver_h
7 7
8 #include "public/platform/WebPrivatePtr.h" 8 #include "public/platform/WebPrivatePtr.h"
9 9
10 namespace blink { 10 namespace blink {
(...skipping 10 matching lines...) Expand all
21 BLINK_EXPORT WebMediaDeviceChangeObserver& operator=( 21 BLINK_EXPORT WebMediaDeviceChangeObserver& operator=(
22 const WebMediaDeviceChangeObserver&); 22 const WebMediaDeviceChangeObserver&);
23 BLINK_EXPORT ~WebMediaDeviceChangeObserver(); 23 BLINK_EXPORT ~WebMediaDeviceChangeObserver();
24 24
25 // Notify that the set of media devices has changed. 25 // Notify that the set of media devices has changed.
26 BLINK_EXPORT void DidChangeMediaDevices(); 26 BLINK_EXPORT void DidChangeMediaDevices();
27 BLINK_EXPORT bool IsNull() const; 27 BLINK_EXPORT bool IsNull() const;
28 BLINK_EXPORT WebSecurityOrigin GetSecurityOrigin() const; 28 BLINK_EXPORT WebSecurityOrigin GetSecurityOrigin() const;
29 29
30 #if INSIDE_BLINK 30 #if INSIDE_BLINK
31 explicit WebMediaDeviceChangeObserver(MediaDevices*); 31 BLINK_EXPORT explicit WebMediaDeviceChangeObserver(MediaDevices*);
32 #endif 32 #endif
33 private: 33 private:
34 void Assign(const WebMediaDeviceChangeObserver&); 34 void Assign(const WebMediaDeviceChangeObserver&);
35 void Reset(); 35 void Reset();
36 WebPrivatePtr<MediaDevices> private_; 36 WebPrivatePtr<MediaDevices> private_;
37 }; 37 };
38 38
39 } // namespace blink 39 } // namespace blink
40 40
41 #endif 41 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698