HomeSort by relevance Sort by last modified time
    Searched refs:AutomationProxy (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/chrome/test/automation/
automation_proxy.cc 39 explicit AutomationMessageFilter(AutomationProxy* server) : server_(server) {}
91 AutomationProxy* server_;
99 AutomationProxy::AutomationProxy(base::TimeDelta action_timeout,
119 AutomationProxy::~AutomationProxy() {
128 std::string AutomationProxy::GenerateChannelID() {
142 void AutomationProxy::InitializeThread() {
152 void AutomationProxy::InitializeChannel(const std::string& channel_id,
176 void AutomationProxy::InitializeHandleTracker()
    [all...]
proxy_launcher.h 19 class AutomationProxy;
23 // class determines which AutomationProxy implementation is used by a test.
26 // Subclass from this class to use a different AutomationProxy
110 AutomationProxy* automation() const;
136 virtual AutomationProxy* CreateAutomationProxy(
159 scoped_ptr<AutomationProxy> automation_proxy_;
208 // This is used if you want to connect an AutomationProxy
218 virtual AutomationProxy* CreateAutomationProxy(
239 virtual AutomationProxy* CreateAutomationProxy(
automation_proxy.h 34 // This is an interface that AutomationProxy-related objects can use to
54 class AutomationProxy : public IPC::Listener, public AutomationMessageSender {
56 AutomationProxy(base::TimeDelta action_timeout, bool disconnect_on_failure);
57 virtual ~AutomationProxy();
181 // message from AutomationProxy, unpacks the messages and routes that call to
258 DISALLOW_COPY_AND_ASSIGN(AutomationProxy);
proxy_launcher.cc 514 AutomationProxy* ProxyLauncher::automation() const {
550 AutomationProxy* NamedProxyLauncher::CreateAutomationProxy(
552 AutomationProxy* proxy = new AutomationProxy(execution_timeout,
617 channel_id_ = AutomationProxy::GenerateChannelID();
620 AutomationProxy* AnonymousProxyLauncher::CreateAutomationProxy(
622 AutomationProxy* proxy = new AutomationProxy(execution_timeout,
  /external/chromium_org/chrome/test/pyautolib/
pyautolib.h 22 class AutomationProxy;
72 // AutomationProxy methods
92 virtual AutomationProxy* automation() const OVERRIDE;
pyautolib.cc 99 AutomationProxy* PyUITestBase::automation() const {
100 AutomationProxy* automation_proxy = UITestBase::automation();
112 AutomationProxy* automation_sender = automation();
  /external/chromium_org/chrome_frame/
chrome_frame_automation.h 29 // AutomationProxy ctor for details.
56 // We extend the AutomationProxy class to handle our custom
60 // We have to derive from automationproxy since we want access to some
63 public AutomationProxy {
80 return AutomationProxy::server_version();
84 return AutomationProxy::Send(msg);
88 AutomationProxy::SendProxyConfig(p);
chrome_frame_automation.cc 132 : AutomationProxy(launch_timeout, false), proxy_entry_(entry) {
133 TRACE_EVENT_BEGIN_ETW("chromeframe.automationproxy", this, "");
146 TRACE_EVENT_END_ETW("chromeframe.automationproxy", this, "");
224 // while tearing down the AutomationProxy object due to a NULL MessageLoop
225 // The AutomationProxy class uses the SyncChannel which assumes the existence
227 // We leak the AutomationProxy pointer here to avoid a crash.
240 // We *must* create automationproxy in a thread that has message loop,
246 std::string channel_id = AutomationProxy::GenerateChannelID();
328 // TODO(stoyan) AutomationProxy eats Hello message, hence installing
    [all...]
  /external/chromium_org/chrome/test/ui/
ui_test.h 31 class AutomationProxy;
229 // Pass-through to AutomationProxy::BeginTracing.
232 // Pass-through to AutomationProxy::EndTracing.
252 virtual AutomationProxy* automation() const;
322 // Launches browser and AutomationProxy.
ui_test.cc 133 AutomationProxy* UITestBase::automation() const {
517 // Make the AutomationProxy disconnect the channel on the first error,
  /external/chromium_org/chrome/test/webdriver/
webdriver_automation.h 21 class AutomationProxy;
255 AutomationProxy* automation() const;
webdriver_automation.cc 200 explicit BackwardsCompatAutomationMessageFilter(AutomationProxy* server);
219 AutomationProxy* server_;
226 AutomationProxy* server)
288 void AddBackwardsCompatFilter(AutomationProxy* proxy) {
302 virtual AutomationProxy* CreateAutomationProxy(
304 AutomationProxy* proxy =
318 virtual AutomationProxy* CreateAutomationProxy(
320 AutomationProxy* proxy =
    [all...]
  /external/chromium_org/chrome_frame/test/
automation_client_mock.cc 149 // We mock ChromeFrameDelegate only. The rest is with real AutomationProxy
317 AutomationProxy::GenerateChannelID(),

Completed in 1174 milliseconds