| 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;
|
|
|
|
|