Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: chrome/browser/sessions/restore_tab_helper.cc

Issue 10536074: TabContentsWrapper -> TabContents, part 26. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/sessions/session_restore.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/sessions/restore_tab_helper.h" 5 #include "chrome/browser/sessions/restore_tab_helper.h"
6 6
7 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" 7 #include "chrome/browser/ui/tab_contents/tab_contents.h"
8 #include "chrome/common/chrome_notification_types.h" 8 #include "chrome/common/chrome_notification_types.h"
9 #include "chrome/common/extensions/extension_messages.h" 9 #include "chrome/common/extensions/extension_messages.h"
10 #include "content/public/browser/notification_service.h" 10 #include "content/public/browser/notification_service.h"
11 #include "content/public/browser/render_view_host.h" 11 #include "content/public/browser/render_view_host.h"
12 #include "content/public/browser/web_contents.h" 12 #include "content/public/browser/web_contents.h"
13 13
14 using content::WebContents; 14 using content::WebContents;
15 15
16 RestoreTabHelper::RestoreTabHelper(WebContents* contents) 16 RestoreTabHelper::RestoreTabHelper(WebContents* contents)
17 : content::WebContentsObserver(contents) { 17 : content::WebContentsObserver(contents) {
18 } 18 }
19 19
20 RestoreTabHelper::~RestoreTabHelper() { 20 RestoreTabHelper::~RestoreTabHelper() {
21 } 21 }
22 22
23 void RestoreTabHelper::SetWindowID(const SessionID& id) { 23 void RestoreTabHelper::SetWindowID(const SessionID& id) {
24 window_id_ = id; 24 window_id_ = id;
25 25
26 // TODO(mpcomplete): Maybe this notification should send out a WebContents. 26 // TODO(mpcomplete): Maybe this notification should send out a WebContents.
27 TabContentsWrapper* tab = 27 TabContents* tab = TabContents::FromWebContents(web_contents());
28 TabContentsWrapper::GetCurrentWrapperForContents(web_contents());
29 if (tab) { 28 if (tab) {
30 content::NotificationService::current()->Notify( 29 content::NotificationService::current()->Notify(
31 chrome::NOTIFICATION_TAB_PARENTED, 30 chrome::NOTIFICATION_TAB_PARENTED,
32 content::Source<TabContentsWrapper>(tab), 31 content::Source<TabContents>(tab),
33 content::NotificationService::NoDetails()); 32 content::NotificationService::NoDetails());
34 } 33 }
35 34
36 // Extension code in the renderer holds the ID of the window that hosts it. 35 // Extension code in the renderer holds the ID of the window that hosts it.
37 // Notify it that the window ID changed. 36 // Notify it that the window ID changed.
38 web_contents()->GetRenderViewHost()->Send( 37 web_contents()->GetRenderViewHost()->Send(
39 new ExtensionMsg_UpdateBrowserWindowId( 38 new ExtensionMsg_UpdateBrowserWindowId(
40 web_contents()->GetRenderViewHost()->GetRoutingID(), id.id())); 39 web_contents()->GetRenderViewHost()->GetRoutingID(), id.id()));
41 } 40 }
42 41
43 void RestoreTabHelper::RenderViewCreated( 42 void RestoreTabHelper::RenderViewCreated(
44 content::RenderViewHost* render_view_host) { 43 content::RenderViewHost* render_view_host) {
45 render_view_host->Send( 44 render_view_host->Send(
46 new ExtensionMsg_UpdateBrowserWindowId(render_view_host->GetRoutingID(), 45 new ExtensionMsg_UpdateBrowserWindowId(render_view_host->GetRoutingID(),
47 window_id_.id())); 46 window_id_.id()));
48 } 47 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sessions/session_restore.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698