| Index: chrome/renderer/plugins/shadow_dom_plugin_placeholder.cc
|
| diff --git a/chrome/renderer/plugins/shadow_dom_plugin_placeholder.cc b/chrome/renderer/plugins/shadow_dom_plugin_placeholder.cc
|
| index 8441f7690c6a63036feefd389eccd1bddd61136a..9175a103401b32d38b627624e6829697e7e2ad83 100644
|
| --- a/chrome/renderer/plugins/shadow_dom_plugin_placeholder.cc
|
| +++ b/chrome/renderer/plugins/shadow_dom_plugin_placeholder.cc
|
| @@ -53,10 +53,10 @@ scoped_ptr<blink::WebPluginPlaceholder> CreateShadowDOMPlaceholderForPluginInfo(
|
| orig_mime_type,
|
| &output));
|
| #else
|
| - output.status.value = Status::kNotFound;
|
| + output.status = Status::kNotFound;
|
| #endif
|
|
|
| - if (output.status.value == Status::kNotFound) {
|
| + if (output.status == Status::kNotFound) {
|
| // TODO(jbroman): Handle YouTube specially here, as in
|
| // ChromeContentRendererClient::CreatePlugin.
|
| PluginUMAReporter::GetInstance()->ReportPluginMissing(orig_mime_type,
|
|
|