| Index: chrome/browser/android/dev_tools_server.cc
|
| diff --git a/chrome/browser/android/dev_tools_server.cc b/chrome/browser/android/dev_tools_server.cc
|
| index 970c6a79cb5d9047931292c5884e47ddfd2bd14a..80d09fa5eae50eedef8bc9d70e8ec7a55f815be8 100644
|
| --- a/chrome/browser/android/dev_tools_server.cc
|
| +++ b/chrome/browser/android/dev_tools_server.cc
|
| @@ -291,14 +291,14 @@ class DevToolsServerDelegate : public content::DevToolsHttpHandlerDelegate {
|
| return "";
|
| }
|
|
|
| - virtual scoped_ptr<content::DevToolsTarget> CreateNewTarget(
|
| - const GURL& url) OVERRIDE {
|
| + virtual scoped_ptr<content::DevToolsTarget> CreateNewTarget() OVERRIDE {
|
| Profile* profile =
|
| g_browser_process->profile_manager()->GetDefaultProfile();
|
| TabModel* tab_model = TabModelList::GetTabModelWithProfile(profile);
|
| if (!tab_model)
|
| return scoped_ptr<content::DevToolsTarget>();
|
| - WebContents* web_contents = tab_model->CreateTabForTesting(url);
|
| + WebContents* web_contents =
|
| + tab_model->CreateTabForTesting(GURL(content::kAboutBlankURL));
|
| if (!web_contents)
|
| return scoped_ptr<content::DevToolsTarget>();
|
|
|
|
|