| Index: content/renderer/browser_plugin/browser_plugin_manager.cc
|
| diff --git a/content/renderer/browser_plugin/browser_plugin_manager.cc b/content/renderer/browser_plugin/browser_plugin_manager.cc
|
| index 19820735f37648ffda9a51cb8979505957dac211..a9236a76657c8d0a4ba0a414ac8cff27d99df180 100644
|
| --- a/content/renderer/browser_plugin/browser_plugin_manager.cc
|
| +++ b/content/renderer/browser_plugin/browser_plugin_manager.cc
|
| @@ -49,7 +49,7 @@ int BrowserPluginManager::GetNextInstanceID() {
|
| }
|
|
|
| void BrowserPluginManager::UpdateFocusState() {
|
| - IDMap<BrowserPlugin>::iterator iter(&instances_);
|
| + IDMap<BrowserPlugin*>::iterator iter(&instances_);
|
| while (!iter.IsAtEnd()) {
|
| iter.GetCurrentValue()->UpdateGuestFocusState(blink::WebFocusTypeNone);
|
| iter.Advance();
|
| @@ -76,7 +76,7 @@ BrowserPlugin* BrowserPluginManager::CreateBrowserPlugin(
|
|
|
| void BrowserPluginManager::DidCommitCompositorFrame(
|
| int render_frame_routing_id) {
|
| - IDMap<BrowserPlugin>::iterator iter(&instances_);
|
| + IDMap<BrowserPlugin*>::iterator iter(&instances_);
|
| while (!iter.IsAtEnd()) {
|
| if (iter.GetCurrentValue()->render_frame_routing_id() ==
|
| render_frame_routing_id) {
|
|
|