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

Unified Diff: chrome/browser/tab_contents/web_contents.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.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/web_contents.cc
===================================================================
--- chrome/browser/tab_contents/web_contents.cc (revision 13164)
+++ chrome/browser/tab_contents/web_contents.cc (working copy)
@@ -13,6 +13,7 @@
#include "chrome/browser/bookmarks/bookmark_model.h"
#include "chrome/browser/browser.h"
#include "chrome/browser/character_encoding.h"
+#include "chrome/browser/debugger/devtools_manager.h"
#include "chrome/browser/dom_operation_notification_details.h"
#include "chrome/browser/dom_ui/dom_ui.h"
#include "chrome/browser/dom_ui/dom_ui_factory.h"
@@ -416,6 +417,11 @@
if (!dest_render_view_host)
return false; // Unable to create the desired render view host.
+ // Tell DevTools agent that it is attached prior to the navigation.
+ DevToolsManager* dev_tools_manager = g_browser_process->devtools_manager();
+ if (dev_tools_manager) // NULL in unit tests.
+ dev_tools_manager->SendAttachToAgent(*this, dest_render_view_host);
+
// Used for page load time metrics.
current_load_start_ = TimeTicks::Now();
« no previous file with comments | « chrome/browser/debugger/devtools_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698