Index: content/browser/browser_plugin/browser_plugin_embedder.cc |
diff --git a/content/browser/browser_plugin/browser_plugin_embedder.cc b/content/browser/browser_plugin/browser_plugin_embedder.cc |
index 742576aa8499768e92c1d6fd897769fc0a04b5ea..0e0e8f7978a432a00c428a277b4ce421abb5e874 100644 |
--- a/content/browser/browser_plugin/browser_plugin_embedder.cc |
+++ b/content/browser/browser_plugin/browser_plugin_embedder.cc |
@@ -222,6 +222,12 @@ void BrowserPluginEmbedder::PluginDestroyed(int instance_id) { |
DestroyGuestByInstanceID(instance_id); |
} |
+void BrowserPluginEmbedder::Go(int instance_id, int relative_index) { |
+ BrowserPluginGuest* guest = GetGuestByInstanceID(instance_id); |
+ if (guest) |
+ guest->Go(relative_index); |
+} |
+ |
void BrowserPluginEmbedder::Stop(int instance_id) { |
BrowserPluginGuest* guest = GetGuestByInstanceID(instance_id); |
if (guest) |