Chromium Code Reviews| Index: content/browser/indexed_db/indexed_db_database.h |
| diff --git a/content/browser/indexed_db/indexed_db_database.h b/content/browser/indexed_db/indexed_db_database.h |
| index 63a438a4bb6b95d13f4b9727b5a36da664053cb6..52ef9ebc597450d3d9a2ff3dac32ff4433f87081 100644 |
| --- a/content/browser/indexed_db/indexed_db_database.h |
| +++ b/content/browser/indexed_db/indexed_db_database.h |
| @@ -37,11 +37,6 @@ struct IndexedDBValue; |
| class CONTENT_EXPORT IndexedDBDatabase |
| : NON_EXPORTED_BASE(public base::RefCounted<IndexedDBDatabase>) { |
| public: |
| - enum TaskType { |
| - NORMAL_TASK = 0, |
| - PREEMPTIVE_TASK |
| - }; |
| - |
| enum PutMode { |
|
jsbell
2014/06/09 16:38:27
Remove this enum too?
Pritam Nikam
2014/06/11 14:05:16
Done.
|
| ADD_OR_UPDATE, |
| ADD_ONLY, |
| @@ -146,9 +141,9 @@ class CONTENT_EXPORT IndexedDBDatabase |
| int64 object_store_id, |
| int64 index_id, |
| scoped_ptr<IndexedDBKeyRange> key_range, |
| - indexed_db::CursorDirection, |
| + blink::Direction, |
| bool key_only, |
| - TaskType task_type, |
| + blink::TaskType task_type, |
| scoped_refptr<IndexedDBCallbacks> callbacks); |
| void Count(int64 transaction_id, |
| int64 object_store_id, |