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

Unified Diff: src/d8-console.h

Issue 2840543002: [d8] implement console for d8. (Closed)
Patch Set: no stress Created 3 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 | « src/d8.gyp ('k') | src/d8-console.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/d8-console.h
diff --git a/src/d8-console.h b/src/d8-console.h
new file mode 100644
index 0000000000000000000000000000000000000000..293cb21180e5d08de6020a3a6e15b3b00fbf6708
--- /dev/null
+++ b/src/d8-console.h
@@ -0,0 +1,34 @@
+// Copyright 2017 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef V8_D8_CONSOLE_H_
+#define V8_D8_CONSOLE_H_
+
+#include "src/base/platform/time.h"
+#include "src/debug/debug-interface.h"
+#include "src/debug/interface-types.h"
+
+namespace v8 {
+
+class D8Console : public debug::ConsoleDelegate {
+ public:
+ explicit D8Console(Isolate* isolate);
+
+ private:
+ void Log(const debug::ConsoleCallArguments& args) override;
+ void Error(const debug::ConsoleCallArguments& args) override;
+ void Warn(const debug::ConsoleCallArguments& args) override;
+ void Info(const debug::ConsoleCallArguments& args) override;
+ void Debug(const debug::ConsoleCallArguments& args) override;
+ void Time(const debug::ConsoleCallArguments& args) override;
+ void TimeEnd(const debug::ConsoleCallArguments& args) override;
+
+ Isolate* isolate_;
+ std::map<std::string, base::TimeTicks> timers_;
+ base::TimeTicks default_timer_;
+};
+
+} // namespace v8
+
+#endif // V8_D8_CONSOLE_H_
« no previous file with comments | « src/d8.gyp ('k') | src/d8-console.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698