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

Unified Diff: media/capture/system_message_window_win.h

Issue 2224643002: Move device monitors out of //media/capture into //media/device_monitors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/capture/device_monitor_udev.cc ('k') | media/capture/system_message_window_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/capture/system_message_window_win.h
diff --git a/media/capture/system_message_window_win.h b/media/capture/system_message_window_win.h
deleted file mode 100644
index 6468317757be8ea5e19d1cc900d9317d052a7717..0000000000000000000000000000000000000000
--- a/media/capture/system_message_window_win.h
+++ /dev/null
@@ -1,54 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MEDIA_CAPTURE_SYSTEM_MESSAGE_WINDOW_WIN_H_
-#define MEDIA_CAPTURE_SYSTEM_MESSAGE_WINDOW_WIN_H_
-
-#include <windows.h>
-
-#include <memory>
-
-#include "base/macros.h"
-#include "media/capture/capture_export.h"
-
-namespace media {
-
-class CAPTURE_EXPORT SystemMessageWindowWin {
- public:
- SystemMessageWindowWin();
-
- virtual ~SystemMessageWindowWin();
-
- virtual LRESULT OnDeviceChange(UINT event_type, LPARAM data);
-
- private:
- void Init();
-
- LRESULT CALLBACK WndProc(HWND hwnd,
- UINT message,
- WPARAM wparam,
- LPARAM lparam);
-
- static LRESULT CALLBACK WndProcThunk(HWND hwnd,
- UINT message,
- WPARAM wparam,
- LPARAM lparam) {
- SystemMessageWindowWin* msg_wnd = reinterpret_cast<SystemMessageWindowWin*>(
- GetWindowLongPtr(hwnd, GWLP_USERDATA));
- if (msg_wnd)
- return msg_wnd->WndProc(hwnd, message, wparam, lparam);
- return ::DefWindowProc(hwnd, message, wparam, lparam);
- }
-
- HMODULE instance_;
- HWND window_;
- class DeviceNotifications;
- std::unique_ptr<DeviceNotifications> device_notifications_;
-
- DISALLOW_COPY_AND_ASSIGN(SystemMessageWindowWin);
-};
-
-} // namespace media
-
-#endif // MEDIA_CAPTURE_SYSTEM_MESSAGE_WINDOW_WIN_H_
« no previous file with comments | « media/capture/device_monitor_udev.cc ('k') | media/capture/system_message_window_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698