Title: [128798] trunk/Source/WebCore
Revision
128798
Author
[email protected]
Date
2012-09-17 13:37:46 -0700 (Mon, 17 Sep 2012)

Log Message

Measure the usage of window.webkitIndexedDB so we can measure the transition to webkit.indexedDB
https://bugs.webkit.org/show_bug.cgi?id=96943

Reviewed by Ojan Vafai.

We don't yet support window.indexedDB but we will once
https://bugs.webkit.org/show_bug.cgi?id=96548 lands. This metric will
help us measure the transition from the prefixed to the unprefixed API.

* Modules/indexeddb/DOMWindowIndexedDatabase.idl:
* page/FeatureObserver.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (128797 => 128798)


--- trunk/Source/WebCore/ChangeLog	2012-09-17 20:12:46 UTC (rev 128797)
+++ trunk/Source/WebCore/ChangeLog	2012-09-17 20:37:46 UTC (rev 128798)
@@ -1,5 +1,19 @@
 2012-09-17  Adam Barth  <[email protected]>
 
+        Measure the usage of window.webkitIndexedDB so we can measure the transition to webkit.indexedDB
+        https://bugs.webkit.org/show_bug.cgi?id=96943
+
+        Reviewed by Ojan Vafai.
+
+        We don't yet support window.indexedDB but we will once
+        https://bugs.webkit.org/show_bug.cgi?id=96548 lands. This metric will
+        help us measure the transition from the prefixed to the unprefixed API.
+
+        * Modules/indexeddb/DOMWindowIndexedDatabase.idl:
+        * page/FeatureObserver.h:
+
+2012-09-17  Adam Barth  <[email protected]>
+
         Measure usage of the legacy WebKitBlobBuilder API in the hopes of being able to remove it
         https://bugs.webkit.org/show_bug.cgi?id=96939
 

Modified: trunk/Source/WebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl (128797 => 128798)


--- trunk/Source/WebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl	2012-09-17 20:12:46 UTC (rev 128797)
+++ trunk/Source/WebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl	2012-09-17 20:37:46 UTC (rev 128798)
@@ -30,7 +30,7 @@
         Conditional=INDEXED_DATABASE,
         Supplemental=DOMWindow
     ] DOMWindowIndexedDatabase {
-        readonly attribute IDBFactory webkitIndexedDB;
+        readonly attribute [V8MeasureAs=PrefixedIndexedDB] IDBFactory webkitIndexedDB;
 
         attribute IDBCursorConstructor webkitIDBCursor;
         attribute IDBDatabaseConstructor webkitIDBDatabase;

Modified: trunk/Source/WebCore/page/FeatureObserver.h (128797 => 128798)


--- trunk/Source/WebCore/page/FeatureObserver.h	2012-09-17 20:12:46 UTC (rev 128797)
+++ trunk/Source/WebCore/page/FeatureObserver.h	2012-09-17 20:37:46 UTC (rev 128798)
@@ -42,6 +42,7 @@
         PageDestruction,
         LegacyNotifications,
         LegacyBlobBuilder,
+        PrefixedIndexedDB,
         // Add new features above this line.
         NumberOfFeatures, // This enum value must be last.
     };
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to