Home
last modified time | relevance | path

Searched refs:AutomationResourceProxy (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/chrome/test/automation/
Dautomation_handle_tracker.h25 class AutomationResourceProxy
26 : public base::RefCountedThreadSafe<AutomationResourceProxy> {
28 AutomationResourceProxy(AutomationHandleTracker* tracker,
46 friend class base::RefCountedThreadSafe<AutomationResourceProxy>;
48 virtual ~AutomationResourceProxy();
64 DISALLOW_COPY_AND_ASSIGN(AutomationResourceProxy);
80 void Add(AutomationResourceProxy* proxy);
86 void Remove(AutomationResourceProxy* proxy);
94 AutomationResourceProxy* GetResource(AutomationHandle handle);
102 std::map<AutomationHandle, scoped_refptr<AutomationResourceProxy> >
[all …]
Dautomation_handle_tracker.cc10 AutomationResourceProxy::AutomationResourceProxy( in AutomationResourceProxy() function in AutomationResourceProxy
20 AutomationResourceProxy::~AutomationResourceProxy() { in ~AutomationResourceProxy()
36 void AutomationHandleTracker::Add(AutomationResourceProxy* proxy) { in Add()
41 void AutomationHandleTracker::Remove(AutomationResourceProxy* proxy) { in Remove()
57 scoped_refptr<AutomationResourceProxy> proxy = iter->second; in InvalidateHandle()
63 AutomationResourceProxy* AutomationHandleTracker::GetResource( in GetResource()
Dwindow_proxy.h29 class WindowProxy : public AutomationResourceProxy {
34 : AutomationResourceProxy(tracker, sender, handle) {} in WindowProxy()
Dbrowser_proxy.h29 class BrowserProxy : public AutomationResourceProxy {
34 : AutomationResourceProxy(tracker, sender, handle) {} in BrowserProxy()
Dtab_proxy.h41 class TabProxy : public AutomationResourceProxy {
Dtab_proxy.cc23 : AutomationResourceProxy(tracker, sender, handle) { in TabProxy()