Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(299)

Side by Side Diff: components/offline_items_collection/core/offline_item_state.h

Issue 2754363004: OfflineContentProvider changes to start service (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 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 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 COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_STATE_H_ 5 #ifndef COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_STATE_H_
6 #define COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_STATE_H_ 6 #define COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_STATE_H_
7 7
8 namespace offline_items_collection { 8 namespace offline_items_collection {
9 9
10 // A Java counterpart will be generated for this enum. 10 // A Java counterpart will be generated for this enum.
11 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.components.offline_items_collection 11 // GENERATED_JAVA_ENUM_PACKAGE: org.chromium.components.offline_items_collection
12 enum OfflineItemState { 12 enum OfflineItemState {
13 IN_PROGRESS = 0, 13 IN_PROGRESS = 0,
14 PENDING,
David Trainor- moved to gerrit 2017/03/18 00:45:41 Trying to find the right way to expose these. I'd
14 COMPLETE, 15 COMPLETE,
15 CANCELLED, 16 CANCELLED,
16 INTERRUPTED, 17 INTERRUPTED,
18 FAILED,
17 PAUSED, // TODO(dtrainor): Make sure exposing a PAUSED state does not impact 19 PAUSED, // TODO(dtrainor): Make sure exposing a PAUSED state does not impact
18 // downloads resumption. 20 // downloads resumption.
19 MAX_DOWNLOAD_STATE, 21 MAX_DOWNLOAD_STATE,
20 }; 22 };
21 23
22 } // namespace offline_items_collection 24 } // namespace offline_items_collection
23 25
24 #endif // COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_STATE_H_ 26 #endif // COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_STATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698