blob: c907f7aeab9b1cbc3e3a43f2dac0e1f49f3694e1 [file] [log] [blame]
// Copyright (c) 2012 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 CHROME_TEST_CHROMEDRIVER_CHROME_DEVTOOLS_CLIENT_H_
#define CHROME_TEST_CHROMEDRIVER_CHROME_DEVTOOLS_CLIENT_H_
#include <memory>
#include <string>
#include "base/callback_forward.h"
namespace base {
class DictionaryValue;
}
class DevToolsEventListener;
class Timeout;
class Status;
class WebViewImpl;
// A DevTools client of a single DevTools debugger.
class DevToolsClient {
public:
typedef base::Callback<Status(bool* is_condition_met)> ConditionalFunc;
virtual ~DevToolsClient() {}
virtual const std::string& GetId() = 0;
virtual bool WasCrashed() = 0;
// Connect to DevTools if the DevToolsClient is disconnected.
virtual Status ConnectIfNecessary() = 0;
virtual Status SendCommand(
const std::string& method,
const base::DictionaryValue& params) = 0;
virtual Status SendCommandWithTimeout(
const std::string& method,
const base::DictionaryValue& params,
const Timeout* timeout) = 0;
virtual Status SendAsyncCommand(
const std::string& method,
const base::DictionaryValue& params) = 0;
virtual Status SendCommandAndGetResult(
const std::string& method,
const base::DictionaryValue& params,
std::unique_ptr<base::DictionaryValue>* result) = 0;
virtual Status SendCommandAndGetResultWithTimeout(
const std::string& method,
const base::DictionaryValue& params,
const Timeout* timeout,
std::unique_ptr<base::DictionaryValue>* result) = 0;
virtual Status SendCommandAndIgnoreResponse(
const std::string& method,
const base::DictionaryValue& params) = 0;
// Adds a listener. This must only be done when the client is disconnected.
virtual void AddListener(DevToolsEventListener* listener) = 0;
// Handles events until the given function reports the condition is met
// and there are no more received events to handle. If the given
// function ever returns an error, returns immediately with the error.
// If the condition is not met within |timeout|, kTimeout status
// is returned eventually. If |timeout| is 0, this function will not block.
virtual Status HandleEventsUntil(const ConditionalFunc& conditional_func,
const Timeout& timeout) = 0;
// Handles events that have been received but not yet handled.
virtual Status HandleReceivedEvents() = 0;
// Indicate that we've been detached from the DevTools target.
virtual void SetDetached() = 0;
// Set the owning WebViewImpl, if any.
virtual void SetOwner(WebViewImpl* owner) = 0;
};
#endif // CHROME_TEST_CHROMEDRIVER_CHROME_DEVTOOLS_CLIENT_H_