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

Unified Diff: chrome/browser/extensions/extension_tab_id_map.cc

Issue 9473001: Extract minimal RenderViewHost interface for embedders, leaving (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to LKGR. Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_tab_id_map.cc
diff --git a/chrome/browser/extensions/extension_tab_id_map.cc b/chrome/browser/extensions/extension_tab_id_map.cc
index 48a97410f144efd70d0f8ebbc4634d2901d754ac..b91eb46930b0fcc39d6c6eef540aa1307ba633fb 100644
--- a/chrome/browser/extensions/extension_tab_id_map.cc
+++ b/chrome/browser/extensions/extension_tab_id_map.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -78,7 +78,7 @@ void ExtensionTabIdMap::TabObserver::Observe(
base::Bind(
&ExtensionTabIdMap::SetTabAndWindowId,
base::Unretained(ExtensionTabIdMap::GetInstance()),
- host->process()->GetID(), host->routing_id(),
+ host->GetProcess()->GetID(), host->GetRoutingID(),
tab->restore_tab_helper()->session_id().id(),
tab->restore_tab_helper()->window_id().id()));
break;
@@ -92,7 +92,7 @@ void ExtensionTabIdMap::TabObserver::Observe(
base::Bind(
&ExtensionTabIdMap::SetTabAndWindowId,
base::Unretained(ExtensionTabIdMap::GetInstance()),
- host->process()->GetID(), host->routing_id(),
+ host->GetProcess()->GetID(), host->GetRoutingID(),
tab->restore_tab_helper()->session_id().id(),
tab->restore_tab_helper()->window_id().id()));
break;
@@ -111,7 +111,7 @@ void ExtensionTabIdMap::TabObserver::Observe(
base::Bind(
&ExtensionTabIdMap::SetTabAndWindowId,
base::Unretained(ExtensionTabIdMap::GetInstance()),
- host->process()->GetID(), host->routing_id(),
+ host->GetProcess()->GetID(), host->GetRoutingID(),
tab->restore_tab_helper()->session_id().id(),
tab->restore_tab_helper()->window_id().id()));
break;
@@ -123,7 +123,7 @@ void ExtensionTabIdMap::TabObserver::Observe(
base::Bind(
&ExtensionTabIdMap::ClearTabAndWindowId,
base::Unretained(ExtensionTabIdMap::GetInstance()),
- host->process()->GetID(), host->routing_id()));
+ host->GetProcess()->GetID(), host->GetRoutingID()));
break;
}
default:
« no previous file with comments | « chrome/browser/extensions/extension_process_manager.cc ('k') | chrome/browser/extensions/extension_tabs_module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698