OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 // MTPDeviceObjectEnumerator implementation. | 5 // MTPDeviceObjectEnumerator implementation. |
6 | 6 |
7 #include "chrome/browser/media_galleries/win/mtp_device_object_enumerator.h" | 7 #include "chrome/browser/media_galleries/win/mtp_device_object_enumerator.h" |
8 | 8 |
| 9 #include "base/logging.h" |
9 #include "base/threading/thread_restrictions.h" | 10 #include "base/threading/thread_restrictions.h" |
10 #include "content/public/browser/browser_thread.h" | |
11 | 11 |
12 MTPDeviceObjectEnumerator::MTPDeviceObjectEnumerator( | 12 MTPDeviceObjectEnumerator::MTPDeviceObjectEnumerator( |
13 const MTPDeviceObjectEntries& entries) | 13 const MTPDeviceObjectEntries& entries) |
14 : object_entries_(entries), | 14 : object_entries_(entries), |
15 index_(0U), | 15 index_(0U), |
16 is_index_ready_(false) { | 16 is_index_ready_(false) { |
17 base::ThreadRestrictions::AssertIOAllowed(); | 17 base::ThreadRestrictions::AssertIOAllowed(); |
18 } | 18 } |
19 | 19 |
20 MTPDeviceObjectEnumerator::~MTPDeviceObjectEnumerator() { | 20 MTPDeviceObjectEnumerator::~MTPDeviceObjectEnumerator() { |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 return object_entries_[index_].object_id; | 61 return object_entries_[index_].object_id; |
62 } | 62 } |
63 | 63 |
64 bool MTPDeviceObjectEnumerator::HasMoreEntries() const { | 64 bool MTPDeviceObjectEnumerator::HasMoreEntries() const { |
65 return index_ < object_entries_.size(); | 65 return index_ < object_entries_.size(); |
66 } | 66 } |
67 | 67 |
68 bool MTPDeviceObjectEnumerator::IsIndexReadyAndInRange() const { | 68 bool MTPDeviceObjectEnumerator::IsIndexReadyAndInRange() const { |
69 return is_index_ready_ && HasMoreEntries(); | 69 return is_index_ready_ && HasMoreEntries(); |
70 } | 70 } |
OLD | NEW |