| 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 abd690b4ed8f9ad1bbf6d8bd23486fe761c4f76c..7cb54ee1c257f1ee2760a18e14e4c84b8759673d 100644
|
| --- a/chrome/browser/plugins/plugin_info_message_filter.cc
|
| +++ b/chrome/browser/plugins/plugin_info_message_filter.cc
|
| @@ -416,7 +416,8 @@ void PluginInfoMessageFilter::Context::DecidePluginStatus(
|
| #endif // defined(ENABLE_EXTENSIONS)
|
|
|
| if (plugin_setting == CONTENT_SETTING_ASK) {
|
| - status->value = ChromeViewHostMsg_GetPluginInfo_Status::kClickToPlay;
|
| + status->value =
|
| + ChromeViewHostMsg_GetPluginInfo_Status::kPlayImportantContent;
|
| } else if (plugin_setting == CONTENT_SETTING_BLOCK) {
|
| status->value =
|
| is_managed ? ChromeViewHostMsg_GetPluginInfo_Status::kBlockedByPolicy
|
| @@ -546,7 +547,8 @@ void PluginInfoMessageFilter::Context::MaybeGrantAccess(
|
| const ChromeViewHostMsg_GetPluginInfo_Status& status,
|
| const base::FilePath& path) const {
|
| if (status.value == ChromeViewHostMsg_GetPluginInfo_Status::kAllowed ||
|
| - status.value == ChromeViewHostMsg_GetPluginInfo_Status::kClickToPlay) {
|
| + status.value ==
|
| + ChromeViewHostMsg_GetPluginInfo_Status::kPlayImportantContent) {
|
| ChromePluginServiceFilter::GetInstance()->AuthorizePlugin(
|
| render_process_id_, path);
|
| }
|
|
|