blob: ec8be1cfd207ce362cf408e517aa4d1549be2529 [file] [log] [blame]
// Copyright 2017 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_DEVTOOLS_PIPE_HANDLER_H_
#define CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PIPE_HANDLER_H_
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "content/public/browser/devtools_agent_host_client.h"
namespace base {
class Thread;
}
namespace content {
class PipeReader;
class DevToolsPipeHandler : public DevToolsAgentHostClient {
public:
DevToolsPipeHandler();
~DevToolsPipeHandler() override;
void HandleMessage(const std::string& message);
void DetachFromTarget();
// DevToolsAgentHostClient overrides
void DispatchProtocolMessage(DevToolsAgentHost* agent_host,
const std::string& message) override;
void AgentHostClosed(DevToolsAgentHost* agent_host) override;
void Shutdown();
private:
std::unique_ptr<PipeReader> pipe_reader_;
std::unique_ptr<base::Thread> read_thread_;
std::unique_ptr<base::Thread> write_thread_;
scoped_refptr<DevToolsAgentHost> browser_target_;
int read_fd_;
int write_fd_;
base::WeakPtrFactory<DevToolsPipeHandler> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(DevToolsPipeHandler);
};
} // namespace content
#endif // CONTENT_BROWSER_DEVTOOLS_DEVTOOLS_PIPE_HANDLER_H_