Title: [142868] trunk/Source/WebCore
- Revision
- 142868
- Author
- ser...@webkit.org
- Date
- 2013-02-14 04:35:09 -0800 (Thu, 14 Feb 2013)
Log Message
Add logging support to IndexedDB for non-Chromium platforms
https://bugs.webkit.org/show_bug.cgi?id=109809
Reviewed by Kentaro Hara.
Enable logging of IndexedDB through the StorageAPI log channel for
non-Chromium architectures.
No new tests required, we're just enabling logging for IndexedDB
using the currently available logging framework.
* Modules/indexeddb/IDBTracing.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (142867 => 142868)
--- trunk/Source/WebCore/ChangeLog 2013-02-14 12:27:16 UTC (rev 142867)
+++ trunk/Source/WebCore/ChangeLog 2013-02-14 12:35:09 UTC (rev 142868)
@@ -1,3 +1,18 @@
+2013-02-14 Sergio Villar Senin <svil...@igalia.com>
+
+ Add logging support to IndexedDB for non-Chromium platforms
+ https://bugs.webkit.org/show_bug.cgi?id=109809
+
+ Reviewed by Kentaro Hara.
+
+ Enable logging of IndexedDB through the StorageAPI log channel for
+ non-Chromium architectures.
+
+ No new tests required, we're just enabling logging for IndexedDB
+ using the currently available logging framework.
+
+ * Modules/indexeddb/IDBTracing.h:
+
2013-02-14 Vsevolod Vlasov <vse...@chromium.org>
Web Inspector: Remove uriForFile and fileForURI methods from FileSystemMapping.
Modified: trunk/Source/WebCore/Modules/indexeddb/IDBTracing.h (142867 => 142868)
--- trunk/Source/WebCore/Modules/indexeddb/IDBTracing.h 2013-02-14 12:27:16 UTC (rev 142867)
+++ trunk/Source/WebCore/Modules/indexeddb/IDBTracing.h 2013-02-14 12:35:09 UTC (rev 142868)
@@ -38,7 +38,8 @@
#else
-#define IDB_TRACE(a) ((void)0)
+#include "Logging.h"
+#define IDB_TRACE(a) LOG(StorageAPI, a)
#endif // PLATFORM(CHROMIUM)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes