1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CHROME_TEST_CHROMEDRIVER_COMMAND_H_
6#define CHROME_TEST_CHROMEDRIVER_COMMAND_H_
7
8#include <string>
9
10#include "base/callback_forward.h"
11#include "base/memory/scoped_ptr.h"
12
13namespace base {
14class DictionaryValue;
15class Value;
16}
17
18class Status;
19
20typedef base::Callback<void(
21    const Status&,
22    scoped_ptr<base::Value>,
23    const std::string&)> CommandCallback;
24
25typedef base::Callback<void(
26    const base::DictionaryValue&,
27    const std::string&,
28    const CommandCallback&)> Command;
29
30#endif  // CHROME_TEST_CHROMEDRIVER_COMMAND_H_
31