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

Unified Diff: content/browser/devtools/protocol/devtools_protocol_client.h

Issue 607913004: Revert of DevTools: Protocol handler generator for content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
Index: content/browser/devtools/protocol/devtools_protocol_client.h
diff --git a/content/browser/devtools/protocol/devtools_protocol_client.h b/content/browser/devtools/protocol/devtools_protocol_client.h
deleted file mode 100644
index b2f95b71d3cebe14e0a66561ccc5eb30f0d98f41..0000000000000000000000000000000000000000
--- a/content/browser/devtools/protocol/devtools_protocol_client.h
+++ /dev/null
@@ -1,76 +0,0 @@
-// 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.
-
-#ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVTOOLS_PROTOCOL_CLIENT_H_
-#define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVTOOLS_PROTOCOL_CLIENT_H_
-
-#include "content/browser/devtools/devtools_protocol.h"
-
-namespace content {
-
-class DevToolsProtocolClient {
- public:
- typedef base::Callback<void(const std::string& event,
- base::DictionaryValue* params)> EventCallback;
-
- typedef base::Callback<void(scoped_refptr<DevToolsProtocol::Response>)>
- ResponseCallback;
-
- enum ResponseStatus {
- RESPONSE_STATUS_FALLTHROUGH,
- RESPONSE_STATUS_OK,
- RESPONSE_STATUS_INVALID_PARAMS,
- RESPONSE_STATUS_INTERNAL_ERROR,
- RESPONSE_STATUS_SERVER_ERROR,
- };
-
- struct Response {
- public:
- static Response FallThrough();
- static Response OK();
- static Response InvalidParams(const std::string& message);
- static Response InternalError(const std::string& message);
- static Response ServerError(const std::string& message);
-
- ResponseStatus status() const;
- const std::string& message() const;
-
- private:
- Response();
-
- ResponseStatus status_;
- std::string message_;
- };
-
- void SendInvalidParamsResponse(
- scoped_refptr<DevToolsProtocol::Command> command,
- const std::string& message);
- void SendInternalErrorResponse(
- scoped_refptr<DevToolsProtocol::Command> command,
- const std::string& message);
- void SendServerErrorResponse(
- scoped_refptr<DevToolsProtocol::Command> command,
- const std::string& message);
-
- protected:
- DevToolsProtocolClient(const EventCallback& event_callback,
- const ResponseCallback& response_callback);
-
- virtual ~DevToolsProtocolClient();
-
- void SendNotification(const std::string& method,
- base::DictionaryValue* params);
-
- void SendAsyncResponse(scoped_refptr<DevToolsProtocol::Response> response);
-
- private:
- EventCallback event_callback_;
- ResponseCallback response_callback_;
-
- DISALLOW_COPY_AND_ASSIGN(DevToolsProtocolClient);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_DEVTOOLS_PROTOCOL_DEVTOOLS_PROTOCOL_CLIENT_H_
« no previous file with comments | « content/browser/devtools/devtools.gyp ('k') | content/browser/devtools/protocol/devtools_protocol_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698