| Index: chrome/test/remoting/remote_desktop_browsertest.h
|
| diff --git a/chrome/test/remoting/remote_desktop_browsertest.h b/chrome/test/remoting/remote_desktop_browsertest.h
|
| index e4a025ec53d95f545635813d9c5f0ab3e7451e8d..d2a46c201e345849d062e8af0b1b3b0dab9b0091 100644
|
| --- a/chrome/test/remoting/remote_desktop_browsertest.h
|
| +++ b/chrome/test/remoting/remote_desktop_browsertest.h
|
| @@ -21,8 +21,10 @@ const char kNoCleanup[] = "no-cleanup";
|
| const char kNoInstall[] = "no-install";
|
| const char kWebAppCrx[] = "webapp-crx";
|
| const char kWebAppUnpacked[] = "webapp-unpacked";
|
| -const char kUsername[] = "username";
|
| -const char kkPassword[] = "password";
|
| +const char kUserName[] = "username";
|
| +const char kPassword[] = "password";
|
| +const char kAccountsFile[] = "accounts-file";
|
| +const char kAccountType[] = "account-type";
|
| const char kMe2MePin[] = "me2me-pin";
|
| const char kRemoteHostName[] = "remote-host-name";
|
| const char kExtensionName[] = "extension-name";
|
| @@ -125,6 +127,8 @@ class RemoteDesktopBrowserTest : public extensions::PlatformAppBrowserTest {
|
| void SimulateMouseClickAt(
|
| int modifiers, blink::WebMouseEvent::Button button, int x, int y);
|
|
|
| + void SetUserNameAndPassword(const base::FilePath &accounts_file);
|
| +
|
| // The following helpers each perform a composite task.
|
|
|
| // Install the chromoting extension
|
| @@ -365,6 +369,8 @@ class RemoteDesktopBrowserTest : public extensions::PlatformAppBrowserTest {
|
| base::FilePath webapp_unpacked_;
|
| std::string username_;
|
| std::string password_;
|
| + std::string accounts_file_;
|
| + std::string account_type_;
|
| std::string me2me_pin_;
|
| std::string remote_host_name_;
|
| std::string extension_name_;
|
|
|