blob: ac72f1beea232783f13471755b0c7c996d44980e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// 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_COMMANDS_H_
#define CHROME_TEST_CHROMEDRIVER_COMMANDS_H_
#include <map>
#include <string>
#include "base/callback_forward.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/test/chromedriver/command.h"
#include "chrome/test/chromedriver/session_map.h"
namespace base {
class DictionaryValue;
class Value;
}
class ChromeLauncher;
struct Session;
// Creates a new session.
Status ExecuteNewSession(
SessionMap* session_map,
ChromeLauncher* launcher,
const base::DictionaryValue& params,
const std::string& session_id,
scoped_ptr<base::Value>* out_value,
std::string* out_session_id);
// Quits all sessions.
Status ExecuteQuitAll(
Command quit_command,
SessionMap* session_map,
const base::DictionaryValue& params,
const std::string& session_id,
scoped_ptr<base::Value>* out_value,
std::string* out_session_id);
// Quits a particular session.
Status ExecuteQuit(
SessionMap* session_map,
Session* session,
const base::DictionaryValue& params,
scoped_ptr<base::Value>* value);
#endif // CHROME_TEST_CHROMEDRIVER_COMMANDS_H_
|