diff options
Diffstat (limited to 'chrome/test/automation')
-rw-r--r-- | chrome/test/automation/autocomplete_edit_proxy.cc | 3 | ||||
-rw-r--r-- | chrome/test/automation/automation_proxy.cc | 4 | ||||
-rw-r--r-- | chrome/test/automation/browser_proxy.cc | 3 |
3 files changed, 9 insertions, 1 deletions
diff --git a/chrome/test/automation/autocomplete_edit_proxy.cc b/chrome/test/automation/autocomplete_edit_proxy.cc index 889f624..3758c74 100644 --- a/chrome/test/automation/autocomplete_edit_proxy.cc +++ b/chrome/test/automation/autocomplete_edit_proxy.cc @@ -10,6 +10,9 @@ #include "chrome/test/automation/automation_messages.h" #include "chrome/test/automation/automation_proxy.h" +using base::TimeDelta; +using base::TimeTicks; + bool AutocompleteEditProxy::GetText(std::wstring* text) const { if (!is_valid()) return false; diff --git a/chrome/test/automation/automation_proxy.cc b/chrome/test/automation/automation_proxy.cc index 1724f95..5588ea8 100644 --- a/chrome/test/automation/automation_proxy.cc +++ b/chrome/test/automation/automation_proxy.cc @@ -16,6 +16,9 @@ #include "chrome/test/automation/tab_proxy.h" #include "chrome/test/automation/window_proxy.h" +using base::TimeDelta; +using base::TimeTicks; + // This class exists to group together the data and functionality used for // synchronous automation requests. class AutomationRequest : @@ -556,4 +559,3 @@ TabProxy* AutomationProxy::CreateExternalTab(HWND* external_tab_container) { delete response; return tab_proxy; } - diff --git a/chrome/test/automation/browser_proxy.cc b/chrome/test/automation/browser_proxy.cc index 8a30c31..ce47335 100644 --- a/chrome/test/automation/browser_proxy.cc +++ b/chrome/test/automation/browser_proxy.cc @@ -13,6 +13,9 @@ #include "chrome/test/automation/automation_proxy.h" #include "chrome/test/automation/tab_proxy.h" +using base::TimeDelta; +using base::TimeTicks; + bool BrowserProxy::ActivateTab(int tab_index) { return ActivateTabWithTimeout(tab_index, INFINITE, NULL); } |