Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(523)

Unified Diff: chrome/test/automation/autocomplete_edit_proxy.cc

Issue 7104029: Automation: fix chrome/browser dependency on chrome/test headers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/automation/autocomplete_edit_proxy.h ('k') | chrome/test/automation/automation_proxy_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/autocomplete_edit_proxy.cc
===================================================================
--- chrome/test/automation/autocomplete_edit_proxy.cc (revision 87598)
+++ chrome/test/automation/autocomplete_edit_proxy.cc (working copy)
@@ -1,87 +0,0 @@
-// Copyright (c) 2006-2009 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.
-
-#include "chrome/test/automation/autocomplete_edit_proxy.h"
-
-#include <vector>
-
-#include "base/threading/platform_thread.h"
-#include "chrome/common/automation_constants.h"
-#include "chrome/common/automation_messages.h"
-#include "chrome/test/automation/automation_proxy.h"
-
-using base::TimeDelta;
-using base::TimeTicks;
-
-bool AutocompleteEditProxy::GetText(string16* text) const {
- if (!is_valid())
- return false;
- if (!text) {
- NOTREACHED();
- return false;
- }
- bool result = false;
- sender_->Send(new AutomationMsg_AutocompleteEditGetText(
- handle_, &result, text));
- return result;
-}
-
-bool AutocompleteEditProxy::WaitForFocus() const {
- if (!is_valid())
- return false;
- bool edit_exists = false;
- sender_->Send(new AutomationMsg_WaitForAutocompleteEditFocus(
- handle_, &edit_exists));
- return edit_exists;
-}
-
-bool AutocompleteEditProxy::SetText(const string16& text) {
- if (!is_valid())
- return false;
- bool result = false;
- sender_->Send(new AutomationMsg_AutocompleteEditSetText(
- handle_, text, &result));
- return result;
-}
-
-bool AutocompleteEditProxy::IsQueryInProgress(bool* query_in_progress) const {
- if (!is_valid())
- return false;
- if (!query_in_progress) {
- NOTREACHED();
- return false;
- }
- bool edit_exists = false;
- sender_->Send(new AutomationMsg_AutocompleteEditIsQueryInProgress(
- handle_, &edit_exists, query_in_progress));
- return edit_exists;
-}
-
-bool AutocompleteEditProxy::WaitForQuery(int wait_timeout_ms) const {
- // TODO(jknotten): use a delayed message / observer instead.
- // See, for example, AutocompleteEditProxy::WaitForFocus.
- const TimeTicks start = TimeTicks::Now();
- const TimeDelta timeout = TimeDelta::FromMilliseconds(wait_timeout_ms);
- bool query_in_progress;
- while (TimeTicks::Now() - start < timeout) {
- if (IsQueryInProgress(&query_in_progress) && !query_in_progress)
- return true;
- base::PlatformThread::Sleep(automation::kSleepTime);
- }
- // If we get here the query is still in progress.
- return false;
-}
-
-bool AutocompleteEditProxy::GetAutocompleteMatches(Matches* matches) const {
- if (!is_valid())
- return false;
- if (!matches) {
- NOTREACHED();
- return false;
- }
- bool edit_exists = false;
- sender_->Send(new AutomationMsg_AutocompleteEditGetMatches(
- handle_, &edit_exists, matches));
- return edit_exists;
-}
« no previous file with comments | « chrome/test/automation/autocomplete_edit_proxy.h ('k') | chrome/test/automation/automation_proxy_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698