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

Unified Diff: webkit/glue/webdevtoolsagent_impl.h

Issue 56149: DevTools: add support for main resource load tracking. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « webkit/glue/devtools/net_agent_impl.cc ('k') | webkit/glue/webdevtoolsagent_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webdevtoolsagent_impl.h
===================================================================
--- webkit/glue/webdevtoolsagent_impl.h (revision 12953)
+++ webkit/glue/webdevtoolsagent_impl.h (working copy)
@@ -7,7 +7,8 @@
#include <string>
-#include "base/scoped_ptr.h"
+#include <wtf/OwnPtr.h>
+
#include "webkit/glue/devtools/devtools_rpc.h"
#include "webkit/glue/devtools/dom_agent.h"
#include "webkit/glue/devtools/net_agent.h"
@@ -70,13 +71,13 @@
WebDevToolsAgentDelegate* delegate_;
WebViewImpl* web_view_impl_;
WebCore::Document* document_;
- scoped_ptr<DebuggerAgentDelegateStub> debugger_agent_delegate_stub_;
- scoped_ptr<DomAgentDelegateStub> dom_agent_delegate_stub_;
- scoped_ptr<NetAgentDelegateStub> net_agent_delegate_stub_;
- scoped_ptr<ToolsAgentDelegateStub> tools_agent_delegate_stub_;
- scoped_ptr<DebuggerAgentImpl> debugger_agent_impl_;
- scoped_ptr<DomAgentImpl> dom_agent_impl_;
- scoped_ptr<NetAgentImpl> net_agent_impl_;
+ OwnPtr<DebuggerAgentDelegateStub> debugger_agent_delegate_stub_;
+ OwnPtr<DomAgentDelegateStub> dom_agent_delegate_stub_;
+ OwnPtr<NetAgentDelegateStub> net_agent_delegate_stub_;
+ OwnPtr<ToolsAgentDelegateStub> tools_agent_delegate_stub_;
+ OwnPtr<DebuggerAgentImpl> debugger_agent_impl_;
+ OwnPtr<DomAgentImpl> dom_agent_impl_;
+ OwnPtr<NetAgentImpl> net_agent_impl_;
bool attached_;
DISALLOW_COPY_AND_ASSIGN(WebDevToolsAgentImpl);
};
« no previous file with comments | « webkit/glue/devtools/net_agent_impl.cc ('k') | webkit/glue/webdevtoolsagent_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698