| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_DESKTOP_IMPL_H_ | 5 #ifndef CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_DESKTOP_IMPL_H_ |
| 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_DESKTOP_IMPL_H_ | 6 #define CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_DESKTOP_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/files/scoped_temp_dir.h" | 12 #include "base/files/scoped_temp_dir.h" |
| 13 #include "base/process.h" | 13 #include "base/process.h" |
| 14 #include "chrome/test/chromedriver/chrome_impl.h" | 14 #include "chrome/test/chromedriver/chrome/chrome_impl.h" |
| 15 #include "chrome/test/chromedriver/net/sync_websocket_factory.h" | 15 #include "chrome/test/chromedriver/net/sync_websocket_factory.h" |
| 16 | 16 |
| 17 class CommandLine; | 17 class CommandLine; |
| 18 class Status; | 18 class Status; |
| 19 class URLRequestContextGetter; | 19 class URLRequestContextGetter; |
| 20 | 20 |
| 21 namespace base { | 21 namespace base { |
| 22 class DictionaryValue; | 22 class DictionaryValue; |
| 23 class FilePath; | 23 class FilePath; |
| 24 class ListValue; | 24 class ListValue; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 54 CommandLine* command); | 54 CommandLine* command); |
| 55 Status ProcessExtensions(const base::ListValue* extensions, | 55 Status ProcessExtensions(const base::ListValue* extensions, |
| 56 const base::FilePath& temp_dir, | 56 const base::FilePath& temp_dir, |
| 57 CommandLine* command); | 57 CommandLine* command); |
| 58 Status PrepareUserDataDir( | 58 Status PrepareUserDataDir( |
| 59 const base::FilePath& user_data_dir, | 59 const base::FilePath& user_data_dir, |
| 60 const base::DictionaryValue* custom_prefs, | 60 const base::DictionaryValue* custom_prefs, |
| 61 const base::DictionaryValue* custom_local_state); | 61 const base::DictionaryValue* custom_local_state); |
| 62 } // namespace internal | 62 } // namespace internal |
| 63 | 63 |
| 64 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_DESKTOP_IMPL_H_ | 64 #endif // CHROME_TEST_CHROMEDRIVER_CHROME_CHROME_DESKTOP_IMPL_H_ |
| OLD | NEW |