blob: 8593bcb886322f414f826de9fb473155e8a47e1c [file] [log] [blame]
// 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_RENDERER_SERVICE_WORKER_EMBEDDED_WORKER_DEVTOOLS_AGENT_H_
#define CONTENT_RENDERER_SERVICE_WORKER_EMBEDDED_WORKER_DEVTOOLS_AGENT_H_
#include <string>
#include "base/macros.h"
#include "ipc/ipc_listener.h"
namespace IPC {
class Message;
class Sender;
}
namespace blink {
class WebEmbeddedWorker;
}
namespace content {
class EmbeddedWorkerDevToolsAgent : public IPC::Listener {
public:
EmbeddedWorkerDevToolsAgent(blink::WebEmbeddedWorker* webworker,
int route_id);
~EmbeddedWorkerDevToolsAgent() override;
// Sends |message| to the DevToolsAgent via |sender|.
void SendMessage(IPC::Sender* sender,
int session_id,
int call_id,
std::string message,
std::string state_cookie);
bool OnMessageReceived(const IPC::Message& message) override;
private:
void OnAttach(int session_id);
void OnReattach(int session_id, const std::string& state);
void OnDetach(int session_id);
void OnDispatchOnInspectorBackend(int session_id,
int call_id,
const std::string& method,
const std::string& message);
blink::WebEmbeddedWorker* webworker_;
int route_id_;
DISALLOW_COPY_AND_ASSIGN(EmbeddedWorkerDevToolsAgent);
};
} // namespace content
#endif // CONTENT_RENDERER_SERVICE_WORKER_EMBEDDED_WORKER_DEVTOOLS_AGENT_H_