summaryrefslogtreecommitdiffstats
path: root/WebCore/storage/IDBKey.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/storage/IDBKey.h')
-rw-r--r--WebCore/storage/IDBKey.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/storage/IDBKey.h b/WebCore/storage/IDBKey.h
index 0303a38..9a27742 100644
--- a/WebCore/storage/IDBKey.h
+++ b/WebCore/storage/IDBKey.h
@@ -55,7 +55,7 @@ public:
// In order of the least to the highest precedent in terms of sort order.
enum Type {
- NullType = 0,
+ NullType = 0, // FIXME: Phase out support for null keys.
StringType,
NumberType
};
@@ -78,8 +78,8 @@ public:
bool isEqual(IDBKey* other);
String whereSyntax(String qualifiedTableName = "") const;
- String leftCursorWhereFragment(String comparisonOperator, String qualifiedTableName = "");
- String rightCursorWhereFragment(String comparisonOperator, String qualifiedTableName = "");
+ String lowerCursorWhereFragment(String comparisonOperator, String qualifiedTableName = "");
+ String upperCursorWhereFragment(String comparisonOperator, String qualifiedTableName = "");
int bind(SQLiteStatement& query, int column) const;
void bindWithNulls(SQLiteStatement& query, int baseColumn) const;