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

Side by Side Diff: content/shell/shell_devtools_frontend.cc

Issue 15984016: Call scoped_refptr<T>::get() rather than relying on implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/shell/shell_devtools_frontend.h" 5 #include "content/shell/shell_devtools_frontend.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/path_service.h" 8 #include "base/path_service.h"
9 #include "content/public/browser/devtools_http_handler.h" 9 #include "content/public/browser/devtools_http_handler.h"
10 #include "content/public/browser/devtools_manager.h" 10 #include "content/public/browser/devtools_manager.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 // static 46 // static
47 ShellDevToolsFrontend* ShellDevToolsFrontend::Show( 47 ShellDevToolsFrontend* ShellDevToolsFrontend::Show(
48 WebContents* inspected_contents) { 48 WebContents* inspected_contents) {
49 Shell* shell = Shell::CreateNewWindow(inspected_contents->GetBrowserContext(), 49 Shell* shell = Shell::CreateNewWindow(inspected_contents->GetBrowserContext(),
50 GURL(), 50 GURL(),
51 NULL, 51 NULL,
52 MSG_ROUTING_NONE, 52 MSG_ROUTING_NONE,
53 gfx::Size()); 53 gfx::Size());
54 ShellDevToolsFrontend* devtools_frontend = new ShellDevToolsFrontend( 54 ShellDevToolsFrontend* devtools_frontend = new ShellDevToolsFrontend(
55 shell, 55 shell,
56 DevToolsAgentHost::GetOrCreateFor( 56 DevToolsAgentHost::GetOrCreateFor(inspected_contents->GetRenderViewHost())
57 inspected_contents->GetRenderViewHost())); 57 .get());
58 58
59 ShellDevToolsDelegate* delegate = ShellContentBrowserClient::Get()-> 59 ShellDevToolsDelegate* delegate = ShellContentBrowserClient::Get()->
60 shell_browser_main_parts()->devtools_delegate(); 60 shell_browser_main_parts()->devtools_delegate();
61 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree)) 61 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kDumpRenderTree))
62 shell->LoadURL(GetDevToolsPathAsURL()); 62 shell->LoadURL(GetDevToolsPathAsURL());
63 else 63 else
64 shell->LoadURL(delegate->devtools_http_handler()->GetFrontendURL(NULL)); 64 shell->LoadURL(delegate->devtools_http_handler()->GetFrontendURL(NULL));
65 65
66 return devtools_frontend; 66 return devtools_frontend;
67 } 67 }
(...skipping 30 matching lines...) Expand all
98 void ShellDevToolsFrontend::WebContentsDestroyed(WebContents* web_contents) { 98 void ShellDevToolsFrontend::WebContentsDestroyed(WebContents* web_contents) {
99 DevToolsManager::GetInstance()->ClientHostClosing(frontend_host_.get()); 99 DevToolsManager::GetInstance()->ClientHostClosing(frontend_host_.get());
100 delete this; 100 delete this;
101 } 101 }
102 102
103 void ShellDevToolsFrontend::InspectedContentsClosing() { 103 void ShellDevToolsFrontend::InspectedContentsClosing() {
104 frontend_shell_->Close(); 104 frontend_shell_->Close();
105 } 105 }
106 106
107 } // namespace content 107 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/renderer_webkitplatformsupport_impl.cc ('k') | content/shell/shell_url_request_context_getter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698