Title: [178654] trunk/Source/WebKit
Revision
178654
Author
ander...@apple.com
Date
2015-01-19 10:40:47 -0800 (Mon, 19 Jan 2015)

Log Message

Try to fix build warnings with newer versions of clang.

* Storage/StorageAreaImpl.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (178653 => 178654)


--- trunk/Source/WebKit/ChangeLog	2015-01-19 18:37:19 UTC (rev 178653)
+++ trunk/Source/WebKit/ChangeLog	2015-01-19 18:40:47 UTC (rev 178654)
@@ -1,3 +1,9 @@
+2015-01-19  Anders Carlsson  <ander...@apple.com>
+
+        Try to fix build warnings with newer versions of clang.
+
+        * Storage/StorageAreaImpl.h:
+
 2015-01-17  Brian J. Burg  <b...@cs.washington.edu>
 
         Web Inspector: highlight data for overlay should use protocol type builders

Modified: trunk/Source/WebKit/Storage/StorageAreaImpl.h (178653 => 178654)


--- trunk/Source/WebKit/Storage/StorageAreaImpl.h	2015-01-19 18:37:19 UTC (rev 178653)
+++ trunk/Source/WebKit/Storage/StorageAreaImpl.h	2015-01-19 18:40:47 UTC (rev 178654)
@@ -56,9 +56,9 @@
 
     virtual size_t memoryBytesUsedByCache() override;
 
-    virtual void incrementAccessCount();
-    virtual void decrementAccessCount();
-    virtual void closeDatabaseIfIdle();
+    virtual void incrementAccessCount() override;
+    virtual void decrementAccessCount() override;
+    virtual void closeDatabaseIfIdle() override;
 
     PassRefPtr<StorageAreaImpl> copy();
     void close();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to