| OLD | NEW |
| 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 #include "media/capture/system_message_window_win.h" | 5 #include "device/capture/system_message_window_win.h" |
| 6 | 6 |
| 7 #include <dbt.h> | 7 #include <dbt.h> |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/system_monitor/system_monitor.h" | 12 #include "base/system_monitor/system_monitor.h" |
| 13 #include "base/win/wrapped_window_proc.h" | 13 #include "base/win/wrapped_window_proc.h" |
| 14 #include "media/audio/win/core_audio_util_win.h" | 14 #include "media/audio/win/core_audio_util_win.h" |
| 15 | 15 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 case WM_DEVICECHANGE: | 150 case WM_DEVICECHANGE: |
| 151 return OnDeviceChange(static_cast<UINT>(wparam), lparam); | 151 return OnDeviceChange(static_cast<UINT>(wparam), lparam); |
| 152 default: | 152 default: |
| 153 break; | 153 break; |
| 154 } | 154 } |
| 155 | 155 |
| 156 return ::DefWindowProc(hwnd, message, wparam, lparam); | 156 return ::DefWindowProc(hwnd, message, wparam, lparam); |
| 157 } | 157 } |
| 158 | 158 |
| 159 } // namespace media | 159 } // namespace media |
| OLD | NEW |