| 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 34d068d9764c8227b69c35f53aa5f74a19a966f4..436af56642530205e10439d359bd839cd01f952e 100644
|
| --- a/content/browser/tab_contents/tab_contents.cc
|
| +++ b/content/browser/tab_contents/tab_contents.cc
|
| @@ -203,7 +203,6 @@ TabContents::TabContents(content::BrowserContext* browser_context,
|
| temporary_zoom_settings_(false),
|
| content_restrictions_(0),
|
| view_type_(content::VIEW_TYPE_TAB_CONTENTS) {
|
| -
|
| render_manager_.Init(browser_context, site_instance, routing_id);
|
|
|
| // We have the initial size of the view be based on the size of the passed in
|
| @@ -1697,6 +1696,12 @@ void TabContents::DidChangeLoadProgress(double progress) {
|
| delegate()->LoadProgressChanged(progress);
|
| }
|
|
|
| +void TabContents::DocumentAvailableInMainFrame(
|
| + RenderViewHost* render_view_host) {
|
| + FOR_EACH_OBSERVER(TabContentsObserver, observers_,
|
| + DocumentAvailableInMainFrame());
|
| +}
|
| +
|
| void TabContents::DocumentOnLoadCompletedInMainFrame(
|
| RenderViewHost* render_view_host,
|
| int32 page_id) {
|
|
|