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

Side by Side Diff: media/capture/system_message_window_win.h

Issue 2081653004: Revert of Re-Reland: Make media/capture gn and gyps produce components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « media/capture/device_monitor_udev.h ('k') | media/capture/video/android/BUILD.gn » ('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 MEDIA_CAPTURE_SYSTEM_MESSAGE_WINDOW_WIN_H_ 5 #ifndef MEDIA_CAPTURE_SYSTEM_MESSAGE_WINDOW_WIN_H_
6 #define MEDIA_CAPTURE_SYSTEM_MESSAGE_WINDOW_WIN_H_ 6 #define MEDIA_CAPTURE_SYSTEM_MESSAGE_WINDOW_WIN_H_
7 7
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include <memory> 10 #include <memory>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "media/capture/capture_export.h" 13 #include "media/base/media_export.h"
14 14
15 namespace media { 15 namespace media {
16 16
17 class CAPTURE_EXPORT SystemMessageWindowWin { 17 class MEDIA_EXPORT SystemMessageWindowWin {
18 public: 18 public:
19 SystemMessageWindowWin(); 19 SystemMessageWindowWin();
20 20
21 virtual ~SystemMessageWindowWin(); 21 virtual ~SystemMessageWindowWin();
22 22
23 virtual LRESULT OnDeviceChange(UINT event_type, LPARAM data); 23 virtual LRESULT OnDeviceChange(UINT event_type, LPARAM data);
24 24
25 private: 25 private:
26 void Init(); 26 void Init();
27 27
(...skipping 17 matching lines...) Expand all
45 HWND window_; 45 HWND window_;
46 class DeviceNotifications; 46 class DeviceNotifications;
47 std::unique_ptr<DeviceNotifications> device_notifications_; 47 std::unique_ptr<DeviceNotifications> device_notifications_;
48 48
49 DISALLOW_COPY_AND_ASSIGN(SystemMessageWindowWin); 49 DISALLOW_COPY_AND_ASSIGN(SystemMessageWindowWin);
50 }; 50 };
51 51
52 } // namespace media 52 } // namespace media
53 53
54 #endif // MEDIA_CAPTURE_SYSTEM_MESSAGE_WINDOW_WIN_H_ 54 #endif // MEDIA_CAPTURE_SYSTEM_MESSAGE_WINDOW_WIN_H_
OLDNEW
« no previous file with comments | « media/capture/device_monitor_udev.h ('k') | media/capture/video/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698