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 // Any tasks that communicates with the portable device may take >100ms to | 5 // Any tasks that communicates with the portable device may take >100ms to |
6 // complete. Those tasks should be run on an blocking thread instead of the | 6 // complete. Those tasks should be run on an blocking thread instead of the |
7 // UI thread. | 7 // UI thread. |
8 | 8 |
9 #include "chrome/browser/storage_monitor/portable_device_watcher_win.h" | 9 #include "chrome/browser/storage_monitor/portable_device_watcher_win.h" |
10 | 10 |
11 #include <dbt.h> | 11 #include <dbt.h> |
12 #include <portabledevice.h> | 12 #include <portabledevice.h> |
13 | 13 |
14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
16 #include "base/stl_util.h" | 16 #include "base/stl_util.h" |
17 #include "base/string_util.h" | 17 #include "base/strings/string_util.h" |
18 #include "base/strings/utf_string_conversions.h" | 18 #include "base/strings/utf_string_conversions.h" |
19 #include "base/threading/sequenced_worker_pool.h" | 19 #include "base/threading/sequenced_worker_pool.h" |
20 #include "base/win/scoped_co_mem.h" | 20 #include "base/win/scoped_co_mem.h" |
21 #include "base/win/scoped_comptr.h" | 21 #include "base/win/scoped_comptr.h" |
22 #include "base/win/scoped_propvariant.h" | 22 #include "base/win/scoped_propvariant.h" |
23 #include "chrome/browser/storage_monitor/media_storage_util.h" | 23 #include "chrome/browser/storage_monitor/media_storage_util.h" |
24 #include "chrome/browser/storage_monitor/removable_device_constants.h" | 24 #include "chrome/browser/storage_monitor/removable_device_constants.h" |
25 #include "chrome/browser/storage_monitor/storage_info.h" | 25 #include "chrome/browser/storage_monitor/storage_info.h" |
26 #include "content/public/browser/browser_thread.h" | 26 #include "content/public/browser/browser_thread.h" |
27 | 27 |
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
650 if (storage_notifications_) { | 650 if (storage_notifications_) { |
651 storage_notifications_->ProcessDetach( | 651 storage_notifications_->ProcessDetach( |
652 storage_map_iter->second.device_id()); | 652 storage_map_iter->second.device_id()); |
653 } | 653 } |
654 storage_map_.erase(storage_map_iter); | 654 storage_map_.erase(storage_map_iter); |
655 } | 655 } |
656 device_map_.erase(device_iter); | 656 device_map_.erase(device_iter); |
657 } | 657 } |
658 | 658 |
659 } // namespace chrome | 659 } // namespace chrome |
OLD | NEW |