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 #ifndef CHROME_BROWSER_STORAGE_MONITOR_PORTABLE_DEVICE_WATCHER_WIN_H_ | 5 #ifndef CHROME_BROWSER_STORAGE_MONITOR_PORTABLE_DEVICE_WATCHER_WIN_H_ |
6 #define CHROME_BROWSER_STORAGE_MONITOR_PORTABLE_DEVICE_WATCHER_WIN_H_ | 6 #define CHROME_BROWSER_STORAGE_MONITOR_PORTABLE_DEVICE_WATCHER_WIN_H_ |
7 | 7 |
8 #include <portabledeviceapi.h> | 8 #include <portabledeviceapi.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
16 #include "base/string16.h" | 16 #include "base/strings/string16.h" |
17 #include "chrome/browser/storage_monitor/storage_monitor.h" | 17 #include "chrome/browser/storage_monitor/storage_monitor.h" |
18 | 18 |
19 namespace base { | 19 namespace base { |
20 class SequencedTaskRunner; | 20 class SequencedTaskRunner; |
21 } | 21 } |
22 | 22 |
23 namespace chrome { | 23 namespace chrome { |
24 | 24 |
25 namespace test { | 25 namespace test { |
26 class TestPortableDeviceWatcherWin; | 26 class TestPortableDeviceWatcherWin; |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 | 139 |
140 // The notifications object to use to signal newly attached devices. | 140 // The notifications object to use to signal newly attached devices. |
141 StorageMonitor::Receiver* storage_notifications_; | 141 StorageMonitor::Receiver* storage_notifications_; |
142 | 142 |
143 DISALLOW_COPY_AND_ASSIGN(PortableDeviceWatcherWin); | 143 DISALLOW_COPY_AND_ASSIGN(PortableDeviceWatcherWin); |
144 }; | 144 }; |
145 | 145 |
146 } // namespace chrome | 146 } // namespace chrome |
147 | 147 |
148 #endif // CHROME_BROWSER_STORAGE_MONITOR_PORTABLE_DEVICE_WATCHER_WIN_H_ | 148 #endif // CHROME_BROWSER_STORAGE_MONITOR_PORTABLE_DEVICE_WATCHER_WIN_H_ |
OLD | NEW |