summaryrefslogtreecommitdiffstats
path: root/content/browser/system_message_window_win.cc
Commit message (Collapse)AuthorAgeFilesLines
* This patch will use the device listener in media to monitor audio capture ↵xians@chromium.org2012-12-161-2/+9
| | | | | | | | | | | | | | | device changed. The reasons for doing this include: # when using the device notification from content/browser, the notification comes before the device is fully initialized, so the change won't show up in the following device enumeration. # I saw a serious crash by plugging in or unplugging an audio device, I believe it is because some racing between two notifications, if this is the case, this patch should fix it. BUG=160872,165147 TEST=manual test by plugging and unplugging device, look at the device selection menu in content setting media. Review URL: https://chromiumcodereview.appspot.com/11529012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173350 0039d316-1c4b-4281-b951-d872f2087c98
* Move remaining files in content\browser to the content namespace.jam@chromium.org2012-10-301-0/+4
| | | | | | Review URL: https://codereview.chromium.org/11340029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164828 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 164120 - content/browser: Move more files into the content namespace.sail@chromium.org2012-10-251-6/+0
| | | | | | | | | | | | | | | Fixed most of the files found with the following command line: $ git grep --files-without-match --name-only "namespace content {" -- content/browser/{*.cc,*.h.*.mm} R=jam@chromium.org Review URL: https://codereview.chromium.org/11274038 TBR=tfarina@chromium.org Review URL: https://codereview.chromium.org/11273049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164122 0039d316-1c4b-4281-b951-d872f2087c98
* content/browser: Move more files into the content namespace.tfarina@chromium.org2012-10-251-0/+6
| | | | | | | | | | | | Fixed most of the files found with the following command line: $ git grep --files-without-match --name-only "namespace content {" -- content/browser/{*.cc,*.h.*.mm} R=jam@chromium.org Review URL: https://codereview.chromium.org/11274038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164120 0039d316-1c4b-4281-b951-d872f2087c98
* Fix device broadcast DCHECK.vandebo@chromium.org2012-09-141-2/+2
| | | | | | | | | | | Inserting/removing a USB device will trip this DCHECK. BUG=NONE Review URL: https://chromiumcodereview.appspot.com/10933084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156726 0039d316-1c4b-4281-b951-d872f2087c98
* Add support for device removal/arrival detection with device type. For now ↵tommi@chromium.org2012-07-311-9/+99
| | | | | | | | | | | this allows us to detect when audio and video capture devices are connected/disconnected. TEST=Try connecting and disconnecting USB audio/video devices. You should see notifications in the log about those operations being detected. BUG=137799 Review URL: https://chromiumcodereview.appspot.com/10824086 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149279 0039d316-1c4b-4281-b951-d872f2087c98
* add device type as an argument in OnDevicesChanged.wjia@chromium.org2012-07-311-1/+1
| | | | | | | | | This allows DevicesChangedObserver to listen to desired events, instead of being woken up by change of uninterested devices. BUG=137799 Review URL: https://chromiumcodereview.appspot.com/10836004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149103 0039d316-1c4b-4281-b951-d872f2087c98
* Added base::win::InitializeWindowClass() wrapper to make sure that window ↵alexeypa@chromium.org2012-05-091-11/+10
| | | | | | | | | | | classes are properly associated with the modules containing their window procedures. TEST=win,win_rel Review URL: https://chromiumcodereview.appspot.com/10315012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136116 0039d316-1c4b-4281-b951-d872f2087c98
* Moves media device notification code to chrome/browsertpayne@chromium.org2012-04-251-61/+2
| | | | | | | | | | BUG=NONE TEST=NONE Review URL: http://codereview.chromium.org/10211008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133946 0039d316-1c4b-4281-b951-d872f2087c98
* Added win media notifiertpayne@chromium.org2012-03-061-4/+68
| | | | | | | | | | BUG=110400 TEST=NONE Review URL: http://codereview.chromium.org/9348100 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125036 0039d316-1c4b-4281-b951-d872f2087c98
* Send WM_DEVICECHANGE message through SystemMonitorscottmg@chromium.org2011-11-151-0/+57
| | | | | | | | | | | | | | | | | WM_DEVICECHANGE is sent when there's been a change to devices or the computer; specifically when a USB device is connected or disconnected. This is intended for use in support of Gamepads for more performant polling and connect/disconnect testing. Currently only on Windows, though seems reasonable to add for other platforms in the future. BUG=79050 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=109960 Review URL: http://codereview.chromium.org/8523021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110014 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 109960 - Send WM_DEVICECHANGE message through SystemMonitorkmadhusu@chromium.org2011-11-141-57/+0
| | | | | | | | | | | | | | | | | | WM_DEVICECHANGE is sent when there's been a change to devices or the computer; specifically when a USB device is connected or disconnected. This is intended for use in support of Gamepads for more performant polling and connect/disconnect testing. Currently only on Windows, though seems reasonable to add for other platforms in the future. BUG=79050 Review URL: http://codereview.chromium.org/8523021 TBR=scottmg@chromium.org Review URL: http://codereview.chromium.org/8528044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109979 0039d316-1c4b-4281-b951-d872f2087c98
* Send WM_DEVICECHANGE message through SystemMonitorscottmg@chromium.org2011-11-141-0/+57
WM_DEVICECHANGE is sent when there's been a change to devices or the computer; specifically when a USB device is connected or disconnected. This is intended for use in support of Gamepads for more performant polling and connect/disconnect testing. Currently only on Windows, though seems reasonable to add for other platforms in the future. BUG=79050 Review URL: http://codereview.chromium.org/8523021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109960 0039d316-1c4b-4281-b951-d872f2087c98