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

Unified Diff: content/browser/debugger/devtools_http_handler_impl.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: content/browser/debugger/devtools_http_handler_impl.cc
diff --git a/content/browser/debugger/devtools_http_handler_impl.cc b/content/browser/debugger/devtools_http_handler_impl.cc
index 689a8bb118b24cd84f92ce5d49360ebd699a2a7d..2a5ac674fbd3b560159b5f94ea920ac2795be928 100644
--- a/content/browser/debugger/devtools_http_handler_impl.cc
+++ b/content/browser/debugger/devtools_http_handler_impl.cc
@@ -57,7 +57,7 @@ class DevToolsClientHostImpl : public DevToolsClientHost {
~DevToolsClientHostImpl() {}
// DevToolsClientHost interface
- virtual void InspectedTabClosing() {
+ virtual void InspectedContentsClosing() {
BrowserThread::PostTask(
BrowserThread::IO,
FROM_HERE,
@@ -74,7 +74,7 @@ class DevToolsClientHostImpl : public DevToolsClientHost {
data));
}
- virtual void TabReplaced(WebContents* new_tab) {
+ virtual void ContentsReplaced(WebContents* new_contents) {
}
private:
@@ -292,7 +292,7 @@ DevToolsHttpHandlerImpl::PageList DevToolsHttpHandlerImpl::GeneratePageList() {
RenderProcessHost* render_process_host = it.GetCurrentValue();
DCHECK(render_process_host);
- // Ignore processes that don't have a connection, such as crashed tabs.
+ // Ignore processes that don't have a connection, such as crashed contents.
if (!render_process_host->HasConnection())
continue;
« no previous file with comments | « content/browser/debugger/devtools_frontend_host.cc ('k') | content/browser/debugger/devtools_manager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698