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_MEDIA_GALLERY_LINUX_MTP_RECURSIVE_DEVICE_OBJECT_ENUMERATO
R_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_GALLERY_LINUX_MTP_RECURSIVE_DEVICE_OBJECT_ENUMERATO
R_H_ |
6 #define CHROME_BROWSER_MEDIA_GALLERY_LINUX_MTP_RECURSIVE_DEVICE_OBJECT_ENUMERATO
R_H_ | 6 #define CHROME_BROWSER_MEDIA_GALLERY_LINUX_MTP_RECURSIVE_DEVICE_OBJECT_ENUMERATO
R_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/file_path.h" | 11 #include "base/file_path.h" |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/time.h" | 13 #include "base/time.h" |
14 #include "chrome/browser/media_transfer_protocol/mtp_file_entry.pb.h" | 14 #include "device/media_transfer_protocol/mtp_file_entry.pb.h" |
15 #include "webkit/fileapi/file_system_file_util.h" | 15 #include "webkit/fileapi/file_system_file_util.h" |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 class SequencedTaskRunner; | 18 class SequencedTaskRunner; |
19 class WaitableEvent; | 19 class WaitableEvent; |
20 } | 20 } |
21 | 21 |
22 namespace chrome { | 22 namespace chrome { |
23 | 23 |
24 // Recursively enumerate each file entry from a given media file entry set. | 24 // Recursively enumerate each file entry from a given media file entry set. |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 63 |
64 // Stores a reference to waitable event associated with the shut down message. | 64 // Stores a reference to waitable event associated with the shut down message. |
65 base::WaitableEvent* on_shutdown_event_; | 65 base::WaitableEvent* on_shutdown_event_; |
66 | 66 |
67 DISALLOW_COPY_AND_ASSIGN(MTPRecursiveDeviceObjectEnumerator); | 67 DISALLOW_COPY_AND_ASSIGN(MTPRecursiveDeviceObjectEnumerator); |
68 }; | 68 }; |
69 | 69 |
70 } // namespace chrome | 70 } // namespace chrome |
71 | 71 |
72 #endif // CHROME_BROWSER_MEDIA_GALLERY_LINUX_MTP_RECURSIVE_DEVICE_OBJECT_ENUMER
ATOR_H_ | 72 #endif // CHROME_BROWSER_MEDIA_GALLERY_LINUX_MTP_RECURSIVE_DEVICE_OBJECT_ENUMER
ATOR_H_ |
OLD | NEW |