| Index: content/browser/renderer_host/pepper/pepper_message_filter.cc
|
| diff --git a/content/browser/renderer_host/pepper/pepper_message_filter.cc b/content/browser/renderer_host/pepper/pepper_message_filter.cc
|
| index 3383bba6086d0cfd7d13a09b7cc3f2bec66dab1a..45e7359038b83d4c2570150a87173c33e437f2c5 100644
|
| --- a/content/browser/renderer_host/pepper/pepper_message_filter.cc
|
| +++ b/content/browser/renderer_host/pepper/pepper_message_filter.cc
|
| @@ -184,10 +184,6 @@ bool PepperMessageFilter::OnMessageReceived(const IPC::Message& msg,
|
| IPC_MESSAGE_HANDLER(PpapiHostMsg_PPBX509Certificate_ParseDER,
|
| OnX509CertificateParseDER);
|
|
|
| - // Flash messages.
|
| - IPC_MESSAGE_HANDLER(PepperMsg_GetLocalDataRestrictions,
|
| - OnGetLocalDataRestrictions)
|
| -
|
| IPC_MESSAGE_UNHANDLED(handled = false)
|
| IPC_END_MESSAGE_MAP_EX()
|
| return handled;
|
| @@ -726,25 +722,6 @@ void PepperMessageFilter::OnX509CertificateParseDER(
|
| result);
|
| }
|
|
|
| -void PepperMessageFilter::OnGetLocalDataRestrictions(
|
| - const GURL& document_url,
|
| - const GURL& plugin_url,
|
| - PP_FlashLSORestrictions* restrictions) {
|
| - ContentBrowserClient* client = GetContentClient()->browser();
|
| - if (!client->AllowPluginLocalDataAccess(document_url, plugin_url,
|
| - resource_context_)) {
|
| - *restrictions = PP_FLASHLSORESTRICTIONS_BLOCK;
|
| - return;
|
| - }
|
| -
|
| - if (client->AllowPluginLocalDataSessionOnly(plugin_url, resource_context_)) {
|
| - *restrictions = PP_FLASHLSORESTRICTIONS_IN_MEMORY;
|
| - return;
|
| - }
|
| -
|
| - *restrictions = PP_FLASHLSORESTRICTIONS_NONE;
|
| -}
|
| -
|
| void PepperMessageFilter::GetFontFamiliesComplete(
|
| IPC::Message* reply_msg,
|
| scoped_ptr<base::ListValue> result) {
|
|
|