Title: [163365] trunk/Source/WebKit2
Revision
163365
Author
[email protected]
Date
2014-02-03 21:44:28 -0800 (Mon, 03 Feb 2014)

Log Message

Unreviewed build fix after http://trac.webkit.org/changeset/163364

* DatabaseProcess/IndexedDB/sqlite/SQLiteIDBCursor.cpp:
(WebKit::getObjectStoreStatement): Args need the new names, and I need to save the file before committing.  :(

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (163364 => 163365)


--- trunk/Source/WebKit2/ChangeLog	2014-02-04 05:42:05 UTC (rev 163364)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-04 05:44:28 UTC (rev 163365)
@@ -1,5 +1,12 @@
 2014-02-03  Brady Eidson  <[email protected]>
 
+        Unreviewed build fix after http://trac.webkit.org/changeset/163364
+
+        * DatabaseProcess/IndexedDB/sqlite/SQLiteIDBCursor.cpp:
+        (WebKit::getObjectStoreStatement): Args need the new names, and I need to save the file before committing.  :(
+
+2014-02-03  Brady Eidson  <[email protected]>
+
         IDB: HTML5 Rocks Indexed Database demo fails
         https://bugs.webkit.org/show_bug.cgi?id=128157
 

Modified: trunk/Source/WebKit2/DatabaseProcess/IndexedDB/sqlite/SQLiteIDBCursor.cpp (163364 => 163365)


--- trunk/Source/WebKit2/DatabaseProcess/IndexedDB/sqlite/SQLiteIDBCursor.cpp	2014-02-04 05:42:05 UTC (rev 163364)
+++ trunk/Source/WebKit2/DatabaseProcess/IndexedDB/sqlite/SQLiteIDBCursor.cpp	2014-02-04 05:44:28 UTC (rev 163365)
@@ -116,7 +116,7 @@
     return indexStatements[i];
 }
 
-static const String& getObjectStoreStatement(bool lowerKey, bool lowerOpen, bool upperKey, bool upperOpen, bool descending)
+static const String& getObjectStoreStatement(bool hasLowerKey, bool isLowerOpen, bool hasUpperKey, bool isUpperOpen, bool descending)
 {
     DEFINE_STATIC_LOCAL(Vector<String>, indexStatements, ());
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to