Chromium Code Reviews| Index: chrome/browser/chromeos/login/login_utils.h |
| diff --git a/chrome/browser/chromeos/login/login_utils.h b/chrome/browser/chromeos/login/login_utils.h |
| index e04c52abe72d88d1dfbd9c10259a7b8e5ed23d12..212cbb052c4068a50b9586c112870230b443c7e3 100644 |
| --- a/chrome/browser/chromeos/login/login_utils.h |
| +++ b/chrome/browser/chromeos/login/login_utils.h |
| @@ -8,12 +8,17 @@ |
| #include <string> |
| +#include "base/command_line.h" |
|
Evan Stade
2011/01/31 21:06:22
forward declare CommandLine
altimofeev
2011/02/01 12:42:15
Done.
|
| #include "chrome/common/net/gaia/gaia_auth_consumer.h" |
| class GURL; |
| class Profile; |
| class PrefService; |
| +namespace { |
| + class BrowserGuestSessionNavigatorTest; |
|
Evan Stade
2011/01/31 21:06:22
no indent necessary inside namespaces.
altimofeev
2011/02/01 12:42:15
Done.
|
| +} // namespace |
| + |
| namespace chromeos { |
| class Authenticator; |
| @@ -83,6 +88,16 @@ class LoginUtils { |
| // Gets the current background view. |
| virtual BackgroundView* GetBackgroundView() = 0; |
| + |
| + protected: |
| + friend class ::BrowserGuestSessionNavigatorTest; |
| + |
| + // Returns command line string to be used for the OTR process. Also modifies |
| + // given command line. |
| + virtual std::string GetOffTheRecordCommandLine( |
| + const GURL& start_url, |
| + const CommandLine& base_command_line, |
| + CommandLine* command_line) = 0; |
| }; |
| } // namespace chromeos |