Index: content/browser/devtools/tracing_domain_handler.cc |
diff --git a/content/browser/devtools/tracing_domain_handler.cc b/content/browser/devtools/tracing_domain_handler.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..453413a5e5a6ca692101e0b10d1ebfa0505481c2 |
--- /dev/null |
+++ b/content/browser/devtools/tracing_domain_handler.cc |
@@ -0,0 +1,46 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/browser/devtools/tracing_domain_handler.h" |
+ |
+namespace content { |
+namespace devtools { |
+ |
+typedef DevToolsProtocolFrontend::Response Response; |
+typedef DevToolsProtocolFrontend::ResponseStatus ResponseStatus; |
+ |
+TracingDomainHandler::TracingDomainHandler() { |
+} |
+ |
+TracingDomainHandler::~TracingDomainHandler() { |
+} |
+ |
+void TracingDomainHandler::OnClientDetached() { |
+} |
+ |
+void TracingDomainHandler::SetRenderViewHost(RenderViewHostImpl* host) { |
+} |
+ |
+void TracingDomainHandler::SetFrontend( |
+ scoped_ptr<TracingDomainFrontend> frontend) { |
+} |
+ |
+Response TracingDomainHandler::Start( |
+ const std::string& categories, |
+ const std::string& options, |
+ const double* buffer_usage_reporting_interval) { |
+ return Response(ResponseStatus::RESPONSE_STATUS_FALLTHROUGH, ""); |
+} |
+ |
+Response TracingDomainHandler::End() { |
+ return Response(ResponseStatus::RESPONSE_STATUS_FALLTHROUGH, ""); |
+} |
+ |
+Response TracingDomainHandler::GetCategories( |
+ std::vector<std::string>* categories) { |
+ return Response(ResponseStatus::RESPONSE_STATUS_FALLTHROUGH, ""); |
+} |
+ |
+} // namespace devtools |
+} // namespace content |