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

Unified Diff: content/browser/devtools/protocol/tracing_handler.cc

Issue 1255213003: Add Tracing.requestMemoryDump method stub to DevTools API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 | « content/browser/devtools/protocol/tracing_handler.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/devtools/protocol/tracing_handler.cc
diff --git a/content/browser/devtools/protocol/tracing_handler.cc b/content/browser/devtools/protocol/tracing_handler.cc
index f616c5e00c9cf2786e1cdce717a2d7b44fa4defa..d3611b352c36b19a049eb67c24ee025fe9fe1812 100644
--- a/content/browser/devtools/protocol/tracing_handler.cc
+++ b/content/browser/devtools/protocol/tracing_handler.cc
@@ -153,6 +153,10 @@ void TracingHandler::OnCategoriesReceived(
GetCategoriesResponse::Create()->set_categories(categories));
}
+Response TracingHandler::RequestMemoryDump(DevToolsCommandId command_id) {
+ return Response::InternalError("Not implemented");
+}
+
void TracingHandler::SetupTimer(double usage_reporting_interval) {
if (usage_reporting_interval == 0) return;
« no previous file with comments | « content/browser/devtools/protocol/tracing_handler.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698