Title: [92318] trunk/Source/WebKit/chromium
- Revision
- 92318
- Author
- [email protected]
- Date
- 2011-08-03 15:36:35 -0700 (Wed, 03 Aug 2011)
Log Message
[Chromium] Minor cleanup, remove a deprecated method.
The old WebDatabase::updateDatabaseSize method has been replaced with
updateDatabaseSize, updateSpaceAvailable, and resetSpaceAvailable.
https://bugs.webkit.org/show_bug.cgi?id=65553
Reviewed by Adam Barth.
* public/WebDatabase.h:
* src/WebDatabase.cpp:
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (92317 => 92318)
--- trunk/Source/WebKit/chromium/ChangeLog 2011-08-03 22:34:28 UTC (rev 92317)
+++ trunk/Source/WebKit/chromium/ChangeLog 2011-08-03 22:36:35 UTC (rev 92318)
@@ -1,3 +1,15 @@
+2011-08-03 Michael Nordman <[email protected]>
+
+ [Chromium] Minor cleanup, remove a deprecated method.
+ The old WebDatabase::updateDatabaseSize method has been replaced with
+ updateDatabaseSize, updateSpaceAvailable, and resetSpaceAvailable.
+ https://bugs.webkit.org/show_bug.cgi?id=65553
+
+ Reviewed by Adam Barth.
+
+ * public/WebDatabase.h:
+ * src/WebDatabase.cpp:
+
2011-08-03 Pavel Feldman <[email protected]>
Web Inspector: [Timeline] Hover on paint events and see rect outline around that area.
Modified: trunk/Source/WebKit/chromium/public/WebDatabase.h (92317 => 92318)
--- trunk/Source/WebKit/chromium/public/WebDatabase.h 2011-08-03 22:34:28 UTC (rev 92317)
+++ trunk/Source/WebKit/chromium/public/WebDatabase.h 2011-08-03 22:36:35 UTC (rev 92318)
@@ -61,11 +61,6 @@
WEBKIT_API static void closeDatabaseImmediately(
const WebString& originIdentifier, const WebString& databaseName);
- // DEPRECATED - to be removed soon
- WEBKIT_API static void updateDatabaseSize(
- const WebString& originIdentifier, const WebString& databaseName,
- long long databaseSize, long long spaceAvailable);
-
#if WEBKIT_IMPLEMENTATION
WebDatabase(const WebCore::AbstractDatabase*);
#endif
Modified: trunk/Source/WebKit/chromium/src/WebDatabase.cpp (92317 => 92318)
--- trunk/Source/WebKit/chromium/src/WebDatabase.cpp 2011-08-03 22:34:28 UTC (rev 92317)
+++ trunk/Source/WebKit/chromium/src/WebDatabase.cpp 2011-08-03 22:36:35 UTC (rev 92318)
@@ -113,17 +113,6 @@
#endif
}
-// FIXME: This is deprecated, delete after rolling DEPs and chrome is using the new methods.
-void WebDatabase::updateDatabaseSize(
- const WebString& originIdentifier, const WebString& databaseName,
- long long databaseSize, long long spaceAvailable)
-{
-#if ENABLE(DATABASE)
- updateDatabaseSize(originIdentifier, databaseName, databaseSize);
- updateSpaceAvailable(originIdentifier, spaceAvailable);
-#endif
-}
-
void WebDatabase::closeDatabaseImmediately(const WebString& originIdentifier, const WebString& databaseName)
{
#if ENABLE(DATABASE)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes