| Index: content/browser/browser_plugin/browser_plugin_guest.cc
|
| diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
|
| index ceeaaa3d6b90ff861df6a592b0df611fa1827b88..d0a39e22c2d7afa3dcd1fddb5d72c12c4b03d299 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_guest.cc
|
| +++ b/content/browser/browser_plugin/browser_plugin_guest.cc
|
| @@ -332,7 +332,7 @@ void BrowserPluginGuest::InitInternal(
|
| DCHECK(GetWebContents()->GetRenderViewHost());
|
|
|
| // Initialize the device scale factor by calling |NotifyScreenInfoChanged|.
|
| - auto render_widget_host = RenderWidgetHostImpl::From(
|
| + auto* render_widget_host = RenderWidgetHostImpl::From(
|
| GetWebContents()->GetRenderViewHost()->GetWidget());
|
| render_widget_host->NotifyScreenInfoChanged();
|
|
|
| @@ -803,7 +803,7 @@ void BrowserPluginGuest::OnDragStatusUpdate(int browser_plugin_instance_id,
|
| blink::WebDragOperationsMask mask,
|
| const gfx::Point& location) {
|
| RenderViewHost* host = GetWebContents()->GetRenderViewHost();
|
| - auto embedder = owner_web_contents_->GetBrowserPluginEmbedder();
|
| + auto* embedder = owner_web_contents_->GetBrowserPluginEmbedder();
|
| DropData filtered_data(drop_data);
|
| host->FilterDropData(&filtered_data);
|
| switch (drag_status) {
|
|
|