Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Unified Diff: Source/WebCore/page/Page.cpp

Issue 14089003: Remove storageBlockingPolicy (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/page/Page.h ('k') | Source/WebCore/page/SecurityOrigin.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
{
« no previous file with comments | « Source/WebCore/page/Page.h ('k') | Source/WebCore/page/SecurityOrigin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698