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.
5 #ifndef CHROME_TEST_CHROMEDRIVER_COMMAND_H_
6 #define CHROME_TEST_CHROMEDRIVER_COMMAND_H_
10 #include "base/callback_forward.h"
11 #include "base/memory/scoped_ptr.h"
14 class DictionaryValue
;
20 typedef base::Callback
<void(
22 scoped_ptr
<base::Value
>,
23 const std::string
&)> CommandCallback
;
25 typedef base::Callback
<void(
26 const base::DictionaryValue
&,
28 const CommandCallback
&)> Command
;
30 #endif // CHROME_TEST_CHROMEDRIVER_COMMAND_H_