Chromium Code Reviews| 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_PROGRESS_UNIT_H_ | |
| 6 #define COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_PROGRESS_UNIT_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.components.offline_items_collection | |
| 12 enum OfflineItemProgressUnit { | |
|
David Trainor- moved to gerrit
2017/05/03 22:06:32
Does this have to be in a separate file? Also, we
shaktisahu
2017/05/05 02:09:37
Done.
Enum class works fine with JNI generator. We
| |
| 13 BYTES, | |
| 14 FILES, | |
| 15 }; | |
| 16 | |
| 17 } // namespace offline_items_collection | |
| 18 | |
| 19 #endif // COMPONENTS_OFFLINE_ITEMS_COLLECTION_CORE_OFFLINE_ITEM_PROGRESS_UNIT_H _ | |
| OLD | NEW |