Title: [144354] trunk/Source/WebCore
- Revision
- 144354
- Author
- [email protected]
- Date
- 2013-02-28 13:08:39 -0800 (Thu, 28 Feb 2013)
Log Message
Create BlobRegistry through a strategy
https://bugs.webkit.org/show_bug.cgi?id=111100
Chromium build fix.
* platform/network/BlobRegistry.cpp: Use destructor for chromium too.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (144353 => 144354)
--- trunk/Source/WebCore/ChangeLog 2013-02-28 21:04:14 UTC (rev 144353)
+++ trunk/Source/WebCore/ChangeLog 2013-02-28 21:08:39 UTC (rev 144354)
@@ -3,6 +3,15 @@
Create BlobRegistry through a strategy
https://bugs.webkit.org/show_bug.cgi?id=111100
+ Chromium build fix.
+
+ * platform/network/BlobRegistry.cpp: Use destructor for chromium too.
+
+2013-02-28 Alexey Proskuryakov <[email protected]>
+
+ Create BlobRegistry through a strategy
+ https://bugs.webkit.org/show_bug.cgi?id=111100
+
Reviewed by Sam Weinig.
* CMakeLists.txt:
Modified: trunk/Source/WebCore/platform/network/BlobRegistry.cpp (144353 => 144354)
--- trunk/Source/WebCore/platform/network/BlobRegistry.cpp 2013-02-28 21:04:14 UTC (rev 144353)
+++ trunk/Source/WebCore/platform/network/BlobRegistry.cpp 2013-02-28 21:08:39 UTC (rev 144354)
@@ -33,10 +33,9 @@
#include "PlatformStrategies.h"
#include <wtf/MainThread.h>
-#if !PLATFORM(CHROMIUM)
-
namespace WebCore {
+#if !PLATFORM(CHROMIUM)
BlobRegistry& blobRegistry()
{
ASSERT(isMainThread());
@@ -48,6 +47,7 @@
#endif
return instance;
}
+#endif
BlobRegistry::~BlobRegistry()
{
@@ -56,4 +56,3 @@
}
#endif
-#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes