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

Unified Diff: chrome/browser/debugger/devtools_manager.cc

Issue 60115: DevTools: tell agent it has client attached early (prior to the navigation). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « chrome/browser/debugger/devtools_manager.h ('k') | chrome/browser/tab_contents/web_contents.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/devtools_manager.cc
===================================================================
--- chrome/browser/debugger/devtools_manager.cc (revision 13164)
+++ chrome/browser/debugger/devtools_manager.cc (working copy)
@@ -26,8 +26,7 @@
void DevToolsManager::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
- DCHECK(type == NotificationType::WEB_CONTENTS_DISCONNECTED ||
- type == NotificationType::WEB_CONTENTS_SWAPPED);
+ DCHECK(type == NotificationType::WEB_CONTENTS_DISCONNECTED);
if (type == NotificationType::WEB_CONTENTS_DISCONNECTED) {
Source<WebContents> src(source);
@@ -44,12 +43,6 @@
client_host->InspectedTabClosing();
UnregisterDevToolsClientHost(client_host, controller);
}
- } else if (type == NotificationType::WEB_CONTENTS_SWAPPED) {
- Source<WebContents> src(source);
- DevToolsClientHost* client_host = GetDevToolsClientHostFor(*src.ptr());
- if (client_host) {
- SendAttachToAgent(*src.ptr());
- }
}
}
@@ -75,7 +68,7 @@
client_host->set_close_listener(this);
StartListening(navigation_controller);
- SendAttachToAgent(web_contents);
+ SendAttachToAgent(web_contents, web_contents.render_view_host());
}
void DevToolsManager::ForwardToDevToolsAgent(
@@ -207,10 +200,6 @@
this,
NotificationType::WEB_CONTENTS_DISCONNECTED,
NotificationService::AllSources());
- web_contents_listeners_->Add(
- this,
- NotificationType::WEB_CONTENTS_SWAPPED,
- NotificationService::AllSources());
}
}
@@ -223,9 +212,9 @@
}
}
-void DevToolsManager::SendAttachToAgent(const WebContents& wc) {
- RenderViewHost* target_host = wc.render_view_host();
- if (target_host) {
+void DevToolsManager::SendAttachToAgent(const WebContents& wc,
+ RenderViewHost* target_host) {
+ if (GetDevToolsClientHostFor(wc) && target_host) {
IPC::Message* m = new DevToolsAgentMsg_Attach();
m->set_routing_id(target_host->routing_id());
target_host->Send(m);
« no previous file with comments | « chrome/browser/debugger/devtools_manager.h ('k') | chrome/browser/tab_contents/web_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698