OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_SIGNIN_TEST_UTILS_H_ | |
6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_SIGNIN_TEST_UTILS_H_ | |
7 | |
8 class Browser; | |
9 | |
pval...(no longer on Chromium)
2014/11/07 23:54:14
For consistency, let's do the following:
1) Renam
shadi
2014/11/08 01:37:57
Done.
| |
10 // A static function which signs in a user using Chrome sign-in process. | |
pval...(no longer on Chromium)
2014/11/07 23:54:14
this isn't marked static
shadi
2014/11/08 01:37:57
Yeah it should not be static.
| |
11 // This will connect to GAIA servers and kick in a sync cycle. | |
12 bool SignInToGAIA(Browser* browser, | |
pval...(no longer on Chromium)
2014/11/07 23:54:14
what do you think about renaming this to SignIn or
shadi
2014/11/08 01:37:57
Done.
| |
13 const std::string& username, | |
Nicolas Zea
2014/11/07 23:55:48
I'm surprised you don't have to declare string?
shadi
2014/11/08 01:37:57
Yeah, the compiler did not complain probably becau
| |
14 const std::string& password); | |
15 | |
16 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_SIGNIN_TEST_UTILS_H_ | |
OLD | NEW |