Title: [152684] trunk/Source/WebInspectorUI
Revision
152684
Author
commit-qu...@webkit.org
Date
2013-07-15 17:32:40 -0700 (Mon, 15 Jul 2013)

Log Message

Web Inspector: Remove unused columns from select query in ImageUtilities.js
https://bugs.webkit.org/show_bug.cgi?id=118694

Patch by Seokju Kwon <seokju.k...@gmail.com> on 2013-07-15
Reviewed by Timothy Hatcher.

* UserInterface/ImageUtilities.js: Remove pixelRatio and formatVersion from select query.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (152683 => 152684)


--- trunk/Source/WebInspectorUI/ChangeLog	2013-07-16 00:22:28 UTC (rev 152683)
+++ trunk/Source/WebInspectorUI/ChangeLog	2013-07-16 00:32:40 UTC (rev 152684)
@@ -1,3 +1,12 @@
+2013-07-15  Seokju Kwon  <seokju.k...@gmail.com>
+
+        Web Inspector: Remove unused columns from select query in ImageUtilities.js
+        https://bugs.webkit.org/show_bug.cgi?id=118694
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/ImageUtilities.js: Remove pixelRatio and formatVersion from select query.
+
 2013-07-15  Timothy Hatcher  <timo...@apple.com>
 
         Update CodeMirror to 3.14.1.

Modified: trunk/Source/WebInspectorUI/UserInterface/ImageUtilities.js (152683 => 152684)


--- trunk/Source/WebInspectorUI/UserInterface/ImageUtilities.js	2013-07-16 00:22:28 UTC (rev 152683)
+++ trunk/Source/WebInspectorUI/UserInterface/ImageUtilities.js	2013-07-16 00:32:40 UTC (rev 152684)
@@ -104,7 +104,7 @@
     }
 
     _generatedImageCacheDatabase.transaction(function(tx) {
-        tx.executeSql("SELECT key, pixelRatio, imageVersion, formatVersion, data FROM CachedImages WHERE pixelRatio = ? AND formatVersion = ?", [window.devicePixelRatio, _imageStorageFormatVersion], function(tx, result) {
+        tx.executeSql("SELECT key, imageVersion, data FROM CachedImages WHERE pixelRatio = ? AND formatVersion = ?", [window.devicePixelRatio, _imageStorageFormatVersion], function(tx, result) {
             for (var i = 0; i < result.rows.length; ++i) {
                 var row = result.rows.item(i);
                 _fetchedCachedImages[row.key] = {data: row.data, imageVersion: row.imageVersion};
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to