diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-30 03:01:23 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-30 03:01:23 +0000 |
commit | c05fcd65d017eef9a92272f8544013cc368356b3 (patch) | |
tree | c9a0af8183fab5927c841b214f1922a04c640aa6 /chrome/test | |
parent | 98dc01072fbbd8c93d387f4dba8b328a752b1c15 (diff) | |
download | chromium_src-c05fcd65d017eef9a92272f8544013cc368356b3.zip chromium_src-c05fcd65d017eef9a92272f8544013cc368356b3.tar.gz chromium_src-c05fcd65d017eef9a92272f8544013cc368356b3.tar.bz2 |
Update a couple of out of date comments.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/5319001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67659 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test')
-rw-r--r-- | chrome/test/automated_ui_tests/automated_ui_test_base.h | 6 | ||||
-rw-r--r-- | chrome/test/automation/browser_proxy.h | 14 |
2 files changed, 12 insertions, 8 deletions
diff --git a/chrome/test/automated_ui_tests/automated_ui_test_base.h b/chrome/test/automated_ui_tests/automated_ui_test_base.h index 9891b25..e884732 100644 --- a/chrome/test/automated_ui_tests/automated_ui_test_base.h +++ b/chrome/test/automated_ui_tests/automated_ui_test_base.h @@ -6,6 +6,8 @@ #define CHROME_TEST_AUTOMATED_UI_TESTS_AUTOMATED_UI_TEST_BASE_H_ #pragma once +#include <string> + #include "chrome/test/ui/ui_test.h" class AutomatedUITestBase : public UITest { @@ -117,7 +119,7 @@ class AutomatedUITestBase : public UITest { bool ShowHistory(); // Runs the specified browser command in the current active browser. - // See browser_commands.cc for the list of commands. + // See Browser::ExecuteCommandWithDisposition() for the list of commands. // Returns true if the call is successfully dispatched. // Possible failures include the active window is not a browser window or // the message to apply the accelerator fails. @@ -125,7 +127,7 @@ class AutomatedUITestBase : public UITest { // Runs the specified browser command in the current active browser, wait // and return until the command has finished executing. - // See browser_commands.cc for the list of commands. + // See Browser::ExecuteCommandWithDisposition() for the list of commands. // Returns true if the call is successfully dispatched and executed. // Possible failures include the active window is not a browser window, or // the message to apply the accelerator fails, or the command execution diff --git a/chrome/test/automation/browser_proxy.h b/chrome/test/automation/browser_proxy.h index a890d7c..301ced5a 100644 --- a/chrome/test/automation/browser_proxy.h +++ b/chrome/test/automation/browser_proxy.h @@ -135,14 +135,16 @@ class BrowserProxy : public AutomationResourceProxy { // will be false. Returns false on failure. bool IsFindWindowFullyVisible(bool* is_visible) WARN_UNUSED_RESULT; - // Run the specified command in the browser (see browser_commands.cc for the - // list of supported commands). Returns true if the command was successfully - // dispatched, false otherwise. + // Run the specified command in the browser + // (see Browser::ExecuteCommandWithDisposition() for the list of supported + // commands). Returns true if the command was successfully dispatched, + // false otherwise. bool RunCommandAsync(int browser_command) const WARN_UNUSED_RESULT; - // Run the specified command in the browser (see browser_commands.cc for the - // list of supported commands). Returns true if the command was successfully - // dispatched and executed, false otherwise. + // Run the specified command in the browser + // (see Browser::ExecuteCommandWithDisposition() for the list of supported + // commands). Returns true if the command was successfully dispatched and + // executed, false otherwise. bool RunCommand(int browser_command) const WARN_UNUSED_RESULT; // Returns whether the Bookmark bar is visible and whether we are animating |