Index: chrome/browser/plugins/plugin_info_message_filter.cc |
diff --git a/chrome/browser/plugins/plugin_info_message_filter.cc b/chrome/browser/plugins/plugin_info_message_filter.cc |
index b091d458bccb721810b35e3f3f799dab9aa15d99..2eade2a4404477a2b730daee145efe56a9b37e04 100644 |
--- a/chrome/browser/plugins/plugin_info_message_filter.cc |
+++ b/chrome/browser/plugins/plugin_info_message_filter.cc |
@@ -247,7 +247,8 @@ void PluginInfoMessageFilter::Context::DecidePluginStatus( |
CHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO)); |
// NPAPI plugins are not supported inside <webview> guests. |
#if defined(ENABLE_EXTENSIONS) |
- if (WebViewRendererState::GetInstance()->IsGuest(render_process_id_)) { |
+ if (extensions::WebViewRendererState::GetInstance()->IsGuest( |
+ render_process_id_)) { |
status->value = |
ChromeViewHostMsg_GetPluginInfo_Status::kNPAPINotSupported; |
return; |
@@ -325,7 +326,8 @@ void PluginInfoMessageFilter::Context::DecidePluginStatus( |
// and update the status as appropriate depending on the response from the |
// embedder. |
#if defined(ENABLE_EXTENSIONS) |
- if (WebViewRendererState::GetInstance()->IsGuest(render_process_id_)) |
+ if (extensions::WebViewRendererState::GetInstance()->IsGuest( |
+ render_process_id_)) |
status->value = ChromeViewHostMsg_GetPluginInfo_Status::kUnauthorized; |
#endif |