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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
// 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_BROWSER_AUTOMATION_AUTOMATION_UTIL_H_
#define CHROME_BROWSER_AUTOMATION_AUTOMATION_UTIL_H_
#include <string>
#include "base/basictypes.h"
class AutomationId;
class AutomationProvider;
class Browser;
class GURL;
class Profile;
class TabContents;
namespace content {
class RenderViewHost;
class WebContents;
}
namespace base {
class DictionaryValue;
}
namespace extensions {
class Extension;
}
namespace IPC {
class Message;
}
// This file contains automation utility functions.
namespace automation_util {
// Returns the browser at the given index of the |BrowserList| or NULL if the
// index is out of range.
Browser* GetBrowserAt(int index);
// Returns the tab at |tab_index| within the browser at |browser_index| in the
// |BrowserList|. If any of these indices are invalid, NULL will be returned.
content::WebContents* GetWebContentsAt(int browser_index, int tab_index);
#if defined(OS_CHROMEOS)
// Returns the appropriate profile depending on signed in state of user.
Profile* GetCurrentProfileOnChromeOS(std::string* error_message);
#endif
// Returns the browser that contains the given tab, or NULL if none exists.
Browser* GetBrowserForTab(content::WebContents* tab);
// Gets the size and value of the cookie string for |url| in the given tab.
// Can be called from any thread.
void GetCookies(const GURL& url,
content::WebContents* contents,
int* value_size,
std::string* value);
// Sets a cookie for |url| in the given tab. Can be called from any thread.
void SetCookie(const GURL& url,
const std::string& value,
content::WebContents* contents,
int* response_value);
// Deletes a cookie for |url| in the given tab. Can be called from any thread.
void DeleteCookie(const GURL& url,
const std::string& cookie_name,
content::WebContents* contents,
bool* success);
// Gets the cookies for the given URL. Uses the JSON interface.
// See |TestingAutomationProvider| for example input.
void GetCookiesJSON(AutomationProvider* provider,
base::DictionaryValue* args,
IPC::Message* reply_message);
// Deletes the cookie with the given name for the URL. Uses the JSON interface.
// See |TestingAutomationProvider| for example input.
void DeleteCookieJSON(AutomationProvider* provider,
base::DictionaryValue* args,
IPC::Message* reply_message);
// Sets a cookie for the given URL. Uses the JSON interface.
// See |TestingAutomationProvider| for example input.
void SetCookieJSON(AutomationProvider* provider,
base::DictionaryValue* args,
IPC::Message* reply_message);
// Sends a JSON error reply if an app modal dialog is active. Returns whether
// an error reply was sent.
bool SendErrorIfModalDialogActive(AutomationProvider* provider,
IPC::Message* message);
// Returns a valid automation ID for the given tab.
AutomationId GetIdForTab(const TabContents* tab);
// Returns a valid automation ID for the extension view.
AutomationId GetIdForExtensionView(
const content::RenderViewHost* render_view_host);
// Returns a valid automation ID for the extension.
AutomationId GetIdForExtension(const extensions::Extension* extension);
// Gets the tab for the given ID. Returns true on success.
bool GetTabForId(const AutomationId& id, content::WebContents** tab);
// Gets the render view for the given ID. Returns true on success.
bool GetRenderViewForId(const AutomationId& id,
Profile* profile,
content::RenderViewHost** rvh);
// Gets the extension for the given ID. Returns true on success.
bool GetExtensionForId(const AutomationId& id,
Profile* profile,
const extensions::Extension** extension);
// Returns whether the given ID refers to an actual automation entity.
bool DoesObjectWithIdExist(const AutomationId& id, Profile* profile);
} // namespace automation_util
#endif // CHROME_BROWSER_AUTOMATION_AUTOMATION_UTIL_H_
|