| Index: chrome/test/webdriver/session.h
|
| diff --git a/chrome/test/webdriver/session.h b/chrome/test/webdriver/session.h
|
| index c84656a81125b0154fc0e9ee3545d87a9e65c19e..30b953f84fa4649a9c5d3de00e954aad8623caca 100644
|
| --- a/chrome/test/webdriver/session.h
|
| +++ b/chrome/test/webdriver/session.h
|
| @@ -65,9 +65,7 @@ class Session {
|
| // It |user_data_dir| is empty, it will use a temporary dir.
|
| // Returns true on success. On failure, the session will delete
|
| // itself and return an error code.
|
| - Error* Init(const FilePath& browser_exe,
|
| - const FilePath& user_data_dir,
|
| - const CommandLine& options);
|
| + Error* Init(const Automation::InitOptions& options);
|
|
|
| // Terminates this session and deletes itself.
|
| void Terminate();
|
| @@ -297,9 +295,7 @@ class Session {
|
| void RunSessionTaskOnSessionThread(
|
| Task* task,
|
| base::WaitableEvent* done_event);
|
| - void InitOnSessionThread(const FilePath& browser_exe,
|
| - const FilePath& user_data_dir,
|
| - const CommandLine& options,
|
| + void InitOnSessionThread(const Automation::InitOptions& options,
|
| Error** error);
|
| void TerminateOnSessionThread();
|
|
|
|
|