| 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_STORAGE_MONITOR_H_ | 5 #ifndef CHROME_BROWSER_STORAGE_MONITOR_STORAGE_MONITOR_H_ |
| 6 #define CHROME_BROWSER_STORAGE_MONITOR_STORAGE_MONITOR_H_ | 6 #define CHROME_BROWSER_STORAGE_MONITOR_STORAGE_MONITOR_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/observer_list_threadsafe.h" | 14 #include "base/observer_list_threadsafe.h" |
| 15 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
| 16 #include "base/synchronization/lock.h" | 16 #include "base/synchronization/lock.h" |
| 17 #include "base/threading/thread_checker.h" |
| 17 #include "chrome/browser/storage_monitor/storage_info.h" | 18 #include "chrome/browser/storage_monitor/storage_info.h" |
| 18 | 19 |
| 19 class ChromeBrowserMainPartsLinux; | 20 class ChromeBrowserMainPartsLinux; |
| 20 class ChromeBrowserMainPartsMac; | 21 class ChromeBrowserMainPartsMac; |
| 21 class MediaGalleriesPlatformAppBrowserTest; | 22 class MediaGalleriesPlatformAppBrowserTest; |
| 22 class MediaGalleriesPrivateApiTest; | 23 class MediaGalleriesPrivateApiTest; |
| 23 class MediaGalleriesPrivateEjectApiTest; | 24 class MediaGalleriesPrivateEjectApiTest; |
| 24 class SystemInfoStorageApiTest; | 25 class SystemInfoStorageApiTest; |
| 25 class SystemInfoStorageEjectApiTest; | 26 class SystemInfoStorageEjectApiTest; |
| 26 | 27 |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 | 177 |
| 177 // Map of all known storage devices,including fixed and removable storages. | 178 // Map of all known storage devices,including fixed and removable storages. |
| 178 StorageMap storage_map_; | 179 StorageMap storage_map_; |
| 179 | 180 |
| 180 scoped_ptr<TransientDeviceIds> transient_device_ids_; | 181 scoped_ptr<TransientDeviceIds> transient_device_ids_; |
| 181 }; | 182 }; |
| 182 | 183 |
| 183 } // namespace chrome | 184 } // namespace chrome |
| 184 | 185 |
| 185 #endif // CHROME_BROWSER_STORAGE_MONITOR_STORAGE_MONITOR_H_ | 186 #endif // CHROME_BROWSER_STORAGE_MONITOR_STORAGE_MONITOR_H_ |
| OLD | NEW |