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

Unified Diff: headless/lib/browser/headless_devtools_client_impl.cc

Issue 2185943003: Support C++ bindings for the DevTools Log Domain in headless_lib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « headless/lib/browser/headless_devtools_client_impl.h ('k') | headless/public/headless_devtools_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: headless/lib/browser/headless_devtools_client_impl.cc
diff --git a/headless/lib/browser/headless_devtools_client_impl.cc b/headless/lib/browser/headless_devtools_client_impl.cc
index a00aa7eadb52d151651ac094bda6d061075d307c..7179071b68d23da09b60b6c6fa3178df66106b13 100644
--- a/headless/lib/browser/headless_devtools_client_impl.cc
+++ b/headless/lib/browser/headless_devtools_client_impl.cc
@@ -50,6 +50,7 @@ HeadlessDevToolsClientImpl::HeadlessDevToolsClientImpl()
inspector_domain_(this),
io_domain_(this),
layer_tree_domain_(this),
+ log_domain_(this),
memory_domain_(this),
network_domain_(this),
page_domain_(this),
@@ -227,6 +228,10 @@ layer_tree::Domain* HeadlessDevToolsClientImpl::GetLayerTree() {
return &layer_tree_domain_;
}
+log::Domain* HeadlessDevToolsClientImpl::GetLog() {
+ return &log_domain_;
+}
+
memory::Domain* HeadlessDevToolsClientImpl::GetMemory() {
return &memory_domain_;
}
« no previous file with comments | « headless/lib/browser/headless_devtools_client_impl.h ('k') | headless/public/headless_devtools_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698