| 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 // chrome::MediaStorageUtil implementation. | 5 // chrome::MediaStorageUtil implementation. |
| 6 | 6 |
| 7 #include "chrome/browser/media_gallery/media_storage_util.h" | 7 #include "chrome/browser/system_monitor/media_storage_util.h" |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/system_monitor/system_monitor.h" | 14 #include "base/system_monitor/system_monitor.h" |
| 15 #include "content/public/browser/browser_thread.h" | 15 #include "content/public/browser/browser_thread.h" |
| 16 | 16 |
| 17 using base::SystemMonitor; | 17 using base::SystemMonitor; |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 FilePath::FromUTF8Unsafe(unique_id), callback)); | 213 FilePath::FromUTF8Unsafe(unique_id), callback)); |
| 214 break; | 214 break; |
| 215 } | 215 } |
| 216 NOTREACHED(); | 216 NOTREACHED(); |
| 217 callback.Run(FilePath()); | 217 callback.Run(FilePath()); |
| 218 } | 218 } |
| 219 | 219 |
| 220 MediaStorageUtil::MediaStorageUtil() {} | 220 MediaStorageUtil::MediaStorageUtil() {} |
| 221 | 221 |
| 222 } // namespace chrome | 222 } // namespace chrome |
| OLD | NEW |