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

Unified Diff: webkit/plugins/ppapi/mock_plugin_delegate.cc

Issue 10831045: Add PP_FlashLSORestrictions to the list of settings supported by the Flash_GetSetting Pepper API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename site_url to document_url Created 8 years, 5 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
Index: webkit/plugins/ppapi/mock_plugin_delegate.cc
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc
index 2fce82cd951ea65a0a95bd90fa3bc904184e3e0f..9dddd7d5fd20c7ea1d3754fec070cf0d488bbe3f 100644
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc
@@ -460,5 +460,13 @@ std::string MockPluginDelegate::GetDeviceID() {
return std::string();
}
+void MockPluginDelegate::GetLocalDataRestrictions(const GURL& document_url,
+ const GURL& plugin_url,
+ bool* block_access,
+ bool* in_memory) {
+ *block_access = false;
+ *in_memory = false;
+}
+
} // namespace ppapi
} // namespace webkit

Powered by Google App Engine
This is Rietveld 408576698