| Index: content/browser/tab_contents/tab_contents.cc
|
| diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc
|
| index cd366410897d73ee92f39b24068f817cf47efdfc..bbaf198467c9f2d263c5a34c6b74d22186301798 100644
|
| --- a/content/browser/tab_contents/tab_contents.cc
|
| +++ b/content/browser/tab_contents/tab_contents.cc
|
| @@ -14,6 +14,7 @@
|
| #include "base/string_util.h"
|
| #include "base/time.h"
|
| #include "base/utf_string_conversions.h"
|
| +#include "content/browser/browser_plugin/browser_plugin_web_contents_observer.h"
|
| #include "content/browser/child_process_security_policy_impl.h"
|
| #include "content/browser/debugger/devtools_manager_impl.h"
|
| #include "content/browser/download/download_stats.h"
|
| @@ -307,6 +308,9 @@ TabContents::TabContents(content::BrowserContext* browser_context,
|
| java_bridge_dispatcher_host_manager_.reset(
|
| new JavaBridgeDispatcherHostManager(this));
|
| #endif
|
| +
|
| + browser_plugin_web_contents_observer_.reset(
|
| + new content::BrowserPluginWebContentsObserver(this));
|
| }
|
|
|
| TabContents::~TabContents() {
|
|
|