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

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

Issue 10065017: TabContents -> WebContentsImpl, part 8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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_devtools_bridge.cc
diff --git a/chrome/browser/extensions/extension_devtools_bridge.cc b/chrome/browser/extensions/extension_devtools_bridge.cc
index 18b14bc960aac5696ac8f5f3f728f556d258eb12..7477b27ffa2501035b38770819edbf7489fa0033 100644
--- a/chrome/browser/extensions/extension_devtools_bridge.cc
+++ b/chrome/browser/extensions/extension_devtools_bridge.cc
@@ -100,7 +100,7 @@ void ExtensionDevToolsBridge::UnregisterAsDevToolsClientHost() {
// If the tab we are looking at is going away then we fire a closing event at
// the extension.
-void ExtensionDevToolsBridge::InspectedTabClosing() {
+void ExtensionDevToolsBridge::InspectedContentsClosing() {
DCHECK_EQ(MessageLoop::current()->type(), MessageLoop::TYPE_UI);
// TODO(knorton): Remove this event in favor of the standard tabs.onRemoved
@@ -122,7 +122,7 @@ void ExtensionDevToolsBridge::DispatchOnInspectorFrontend(
on_page_event_name_, json, profile_, GURL());
}
-void ExtensionDevToolsBridge::TabReplaced(WebContents* new_tab) {
+void ExtensionDevToolsBridge::ContentsReplaced(WebContents* new_contents) {
// We don't update the tab id as it needs to remain the same so that we can
// properly unregister.
}
« no previous file with comments | « chrome/browser/extensions/extension_devtools_bridge.h ('k') | chrome/browser/prerender/prerender_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698