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

Unified Diff: webkit/glue/webdevtoolsagent_impl.h

Issue 62050: DevTools: add basic console support. (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 | « webkit/glue/devtools/tools_agent.h ('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 13234)
+++ webkit/glue/webdevtoolsagent_impl.h (working copy)
@@ -8,6 +8,7 @@
#include <string>
#include <wtf/OwnPtr.h>
+#include <wtf/Vector.h>
#include "webkit/glue/devtools/devtools_rpc.h"
#include "webkit/glue/devtools/dom_agent.h"
@@ -49,6 +50,7 @@
const WebCore::String& function_name,
int node_id,
const WebCore::String& json_args);
+ virtual void ClearConsoleMessages();
// WebDevToolsAgent implementation.
virtual void Attach();
@@ -64,10 +66,24 @@
void DidCommitLoadForFrame(WebViewImpl* webview,
WebFrame* frame,
bool is_new_navigation);
+ void AddMessageToConsole(
+ const WebCore::String& message,
+ const WebCore::String& source_id,
+ unsigned int line_no);
NetAgentImpl* net_agent_impl() { return net_agent_impl_.get(); }
private:
+ struct ConsoleMessage {
+ ConsoleMessage(const String& m, const String& sid, unsigned li)
+ : message(m),
+ source_id(sid),
+ line_no(li) {
+ }
+ WebCore::String message;
+ WebCore::String source_id;
+ unsigned int line_no;
+ };
WebDevToolsAgentDelegate* delegate_;
WebViewImpl* web_view_impl_;
WebCore::Document* document_;
@@ -78,6 +94,7 @@
OwnPtr<DebuggerAgentImpl> debugger_agent_impl_;
OwnPtr<DomAgentImpl> dom_agent_impl_;
OwnPtr<NetAgentImpl> net_agent_impl_;
+ Vector<ConsoleMessage> console_log_;
bool attached_;
DISALLOW_COPY_AND_ASSIGN(WebDevToolsAgentImpl);
};
« no previous file with comments | « webkit/glue/devtools/tools_agent.h ('k') | webkit/glue/webdevtoolsagent_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698