| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_STATE_H_ |
| 6 #define COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_STATE_H_ |
| 7 |
| 8 namespace offline_items_collection { |
| 9 |
| 10 // A Java counterpart will be generated for this enum. |
| 11 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.offline_items_collection.core.item |
| 12 enum OfflineItemState { |
| 13 IN_PROGRESS = 0, |
| 14 COMPLETE, |
| 15 CANCELLED, |
| 16 INTERRUPTED, |
| 17 PAUSED, // TODO(dtrainor): Make sure exposing a PAUSED state does not impact |
| 18 // downloads resumption. |
| 19 MAX_DOWNLOAD_STATE, |
| 20 }; |
| 21 |
| 22 } // namespace offline_items_collection |
| 23 |
| 24 #endif // COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_STATE_H_ |
| OLD | NEW |