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

Side by Side Diff: public/platform/WebIDBDatabase.h

Issue 348203002: [IndexedDB] Removed FIXMEs as consistent enums being used on both sides of IPC. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « public/platform/WebIDBCursor.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 29 matching lines...) Expand all
40 class WebIDBDatabaseError; 40 class WebIDBDatabaseError;
41 class WebIDBKey; 41 class WebIDBKey;
42 class WebIDBKeyPath; 42 class WebIDBKeyPath;
43 class WebIDBKeyRange; 43 class WebIDBKeyRange;
44 44
45 // See comment in WebIDBFactory for a high level overview of these classes. 45 // See comment in WebIDBFactory for a high level overview of these classes.
46 class WebIDBDatabase { 46 class WebIDBDatabase {
47 public: 47 public:
48 virtual ~WebIDBDatabase() { } 48 virtual ~WebIDBDatabase() { }
49 49
50 // FIXME: Remove once Chromium is updated to use the new enums.
51 typedef WebIDBTransactionMode TransactionMode;
52 static const WebIDBTransactionMode TransactionReadOnly = WebIDBTransactionMo deReadOnly;
53 static const WebIDBTransactionMode TransactionReadWrite = WebIDBTransactionM odeReadWrite;
54 static const WebIDBTransactionMode TransactionVersionChange = WebIDBTransact ionModeVersionChange;
55
56 virtual void createObjectStore(long long transactionId, long long objectStor eId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_AS SERT_NOT_REACHED(); } 50 virtual void createObjectStore(long long transactionId, long long objectStor eId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_AS SERT_NOT_REACHED(); }
57 virtual void deleteObjectStore(long long transactionId, long long objectStor eId) { BLINK_ASSERT_NOT_REACHED(); } 51 virtual void deleteObjectStore(long long transactionId, long long objectStor eId) { BLINK_ASSERT_NOT_REACHED(); }
58 virtual void createTransaction(long long id, WebIDBDatabaseCallbacks*, const WebVector<long long>& scope, blink::WebIDBTransactionMode) { BLINK_ASSERT_NOT_R EACHED(); } 52 virtual void createTransaction(long long id, WebIDBDatabaseCallbacks*, const WebVector<long long>& scope, blink::WebIDBTransactionMode) { BLINK_ASSERT_NOT_R EACHED(); }
59 virtual void close() { BLINK_ASSERT_NOT_REACHED(); } 53 virtual void close() { BLINK_ASSERT_NOT_REACHED(); }
60 virtual void forceClose() { BLINK_ASSERT_NOT_REACHED(); } 54 virtual void forceClose() { BLINK_ASSERT_NOT_REACHED(); }
61 55
62 virtual void abort(long long transactionId) { BLINK_ASSERT_NOT_REACHED(); } 56 virtual void abort(long long transactionId) { BLINK_ASSERT_NOT_REACHED(); }
63 virtual void commit(long long transactionId) { BLINK_ASSERT_NOT_REACHED(); } 57 virtual void commit(long long transactionId) { BLINK_ASSERT_NOT_REACHED(); }
64 58
65 virtual void createIndex(long long transactionId, long long objectStoreId, l ong long indexId, const WebString& name, const WebIDBKeyPath&, bool unique, bool multiEntry) { BLINK_ASSERT_NOT_REACHED(); } 59 virtual void createIndex(long long transactionId, long long objectStoreId, l ong long indexId, const WebString& name, const WebIDBKeyPath&, bool unique, bool multiEntry) { BLINK_ASSERT_NOT_REACHED(); }
66 virtual void deleteIndex(long long transactionId, long long objectStoreId, l ong long indexId) { BLINK_ASSERT_NOT_REACHED(); } 60 virtual void deleteIndex(long long transactionId, long long objectStoreId, l ong long indexId) { BLINK_ASSERT_NOT_REACHED(); }
67 61
68 // FIXME: Remove once Chromium is updated to use the new enums.
69 typedef WebIDBTaskType TaskType;
70 static const WebIDBTaskType NormalTask = WebIDBTaskTypeNormal;
71 static const WebIDBTaskType PreemptiveTask = WebIDBTaskTypePreemptive;
72 static const WebIDBTaskType TaskTypeLast = WebIDBTaskTypeLast;
73
74 // FIXME: Remove once Chromium is updated to use the new enums.
75 typedef WebIDBPutMode PutMode;
76 static const WebIDBPutMode AddOrUpdate = WebIDBPutModeAddOrUpdate;
77 static const WebIDBPutMode AddOnly = WebIDBPutModeAddOnly;
78 static const WebIDBPutMode CursorUpdate = WebIDBPutModeCursorUpdate;
79 static const WebIDBPutMode PutModeLast = WebIDBPutModeLast;
80
81 static const long long minimumIndexId = 30; 62 static const long long minimumIndexId = 30;
82 63
83 typedef WebVector<WebIDBKey> WebIndexKeys; 64 typedef WebVector<WebIDBKey> WebIndexKeys;
84 65
85 virtual void get(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, bool keyOnly, WebIDBCallbacks*) { BLINK_ASSERT_ NOT_REACHED(); } 66 virtual void get(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, bool keyOnly, WebIDBCallbacks*) { BLINK_ASSERT_ NOT_REACHED(); }
86 virtual void put(long long transactionId, long long objectStoreId, const Web Data& value, const WebVector<WebBlobInfo>&, const WebIDBKey&, blink::WebIDBPutMo de, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebI ndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); } 67 virtual void put(long long transactionId, long long objectStoreId, const Web Data& value, const WebVector<WebBlobInfo>&, const WebIDBKey&, blink::WebIDBPutMo de, WebIDBCallbacks*, const WebVector<long long>& indexIds, const WebVector<WebI ndexKeys>&) { BLINK_ASSERT_NOT_REACHED(); }
87 virtual void setIndexKeys(long long transactionId, long long objectStoreId, const WebIDBKey&, const WebVector<long long>& indexIds, const WebVector<WebIndex Keys>&) { BLINK_ASSERT_NOT_REACHED(); } 68 virtual void setIndexKeys(long long transactionId, long long objectStoreId, const WebIDBKey&, const WebVector<long long>& indexIds, const WebVector<WebIndex Keys>&) { BLINK_ASSERT_NOT_REACHED(); }
88 virtual void setIndexesReady(long long transactionId, long long objectStoreI d, const WebVector<long long>& indexIds) { BLINK_ASSERT_NOT_REACHED(); } 69 virtual void setIndexesReady(long long transactionId, long long objectStoreI d, const WebVector<long long>& indexIds) { BLINK_ASSERT_NOT_REACHED(); }
89 virtual void openCursor(long long transactionId, long long objectStoreId, lo ng long indexId, const WebIDBKeyRange&, blink::WebIDBCursorDirection, bool keyOn ly, blink::WebIDBTaskType, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } 70 virtual void openCursor(long long transactionId, long long objectStoreId, lo ng long indexId, const WebIDBKeyRange&, blink::WebIDBCursorDirection, bool keyOn ly, blink::WebIDBTaskType, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
90 virtual void count(long long transactionId, long long objectStoreId, long lo ng indexId, const WebIDBKeyRange&, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED( ); } 71 virtual void count(long long transactionId, long long objectStoreId, long lo ng indexId, const WebIDBKeyRange&, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED( ); }
91 virtual void deleteRange(long long transactionId, long long objectStoreId, c onst WebIDBKeyRange&, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } 72 virtual void deleteRange(long long transactionId, long long objectStoreId, c onst WebIDBKeyRange&, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
92 virtual void clear(long long transactionId, long long objectStoreId, WebIDBC allbacks*) { BLINK_ASSERT_NOT_REACHED(); } 73 virtual void clear(long long transactionId, long long objectStoreId, WebIDBC allbacks*) { BLINK_ASSERT_NOT_REACHED(); }
93 virtual void ackReceivedBlobs(const WebVector<WebString>& uuids) { BLINK_ASS ERT_NOT_REACHED(); } 74 virtual void ackReceivedBlobs(const WebVector<WebString>& uuids) { BLINK_ASS ERT_NOT_REACHED(); }
94 75
95 protected: 76 protected:
96 WebIDBDatabase() { } 77 WebIDBDatabase() { }
97 }; 78 };
98 79
99 } // namespace blink 80 } // namespace blink
100 81
101 #endif // WebIDBDatabase_h 82 #endif // WebIDBDatabase_h
OLDNEW
« no previous file with comments | « public/platform/WebIDBCursor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698