Index: Source/WebCore/page/Page.cpp |
diff --git a/Source/WebCore/page/Page.cpp b/Source/WebCore/page/Page.cpp |
index e606827f0c88910d6e37958ae947d92b059b7a77..38be9dfce7510642eb0e33a8538ff645bd3823d2 100644 |
--- a/Source/WebCore/page/Page.cpp |
+++ b/Source/WebCore/page/Page.cpp |
@@ -974,20 +974,6 @@ void Page::collectPluginViews(Vector<RefPtr<PluginViewBase>, 32>& pluginViewBase |
} |
} |
-void Page::storageBlockingStateChanged() |
-{ |
- for (Frame* frame = mainFrame(); frame; frame = frame->tree()->traverseNext()) |
- frame->document()->storageBlockingStateDidChange(); |
- |
- // Collect the PluginViews in to a vector to ensure that action the plug-in takes |
- // from below storageBlockingStateChanged does not affect their lifetime. |
- Vector<RefPtr<PluginViewBase>, 32> pluginViewBases; |
- collectPluginViews(pluginViewBases); |
- |
- for (size_t i = 0; i < pluginViewBases.size(); ++i) |
- pluginViewBases[i]->storageBlockingStateChanged(); |
-} |
- |
#if !ASSERT_DISABLED |
void Page::checkSubframeCountConsistency() const |
{ |