| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_WEBDRIVER_WEBDRIVER_SESSION_H_ | 5 #ifndef CHROME_TEST_WEBDRIVER_WEBDRIVER_SESSION_H_ |
| 6 #define CHROME_TEST_WEBDRIVER_WEBDRIVER_SESSION_H_ | 6 #define CHROME_TEST_WEBDRIVER_WEBDRIVER_SESSION_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/string16.h" | 14 #include "base/string16.h" |
| 15 #include "base/threading/thread.h" | 15 #include "base/threading/thread.h" |
| 16 #include "chrome/common/automation_constants.h" | 16 #include "chrome/common/automation_constants.h" |
| 17 #include "chrome/test/webdriver/frame_path.h" | 17 #include "chrome/test/webdriver/frame_path.h" |
| 18 #include "chrome/test/webdriver/webdriver_automation.h" | 18 #include "chrome/test/webdriver/webdriver_automation.h" |
| 19 #include "chrome/test/webdriver/webdriver_basic_types.h" | 19 #include "chrome/test/webdriver/webdriver_basic_types.h" |
| 20 #include "chrome/test/webdriver/webdriver_element_id.h" | 20 #include "chrome/test/webdriver/webdriver_element_id.h" |
| 21 | 21 |
| 22 class CommandLine; | |
| 23 class FilePath; | 22 class FilePath; |
| 24 | 23 |
| 25 namespace base { | 24 namespace base { |
| 26 class DictionaryValue; | 25 class DictionaryValue; |
| 27 class ListValue; | 26 class ListValue; |
| 28 class Value; | 27 class Value; |
| 29 class WaitableEvent; | 28 class WaitableEvent; |
| 30 } | 29 } |
| 31 | 30 |
| 32 namespace webdriver { | 31 namespace webdriver { |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 Options options_; | 405 Options options_; |
| 407 | 406 |
| 408 DISALLOW_COPY_AND_ASSIGN(Session); | 407 DISALLOW_COPY_AND_ASSIGN(Session); |
| 409 }; | 408 }; |
| 410 | 409 |
| 411 } // namespace webdriver | 410 } // namespace webdriver |
| 412 | 411 |
| 413 DISABLE_RUNNABLE_METHOD_REFCOUNT(webdriver::Session); | 412 DISABLE_RUNNABLE_METHOD_REFCOUNT(webdriver::Session); |
| 414 | 413 |
| 415 #endif // CHROME_TEST_WEBDRIVER_WEBDRIVER_SESSION_H_ | 414 #endif // CHROME_TEST_WEBDRIVER_WEBDRIVER_SESSION_H_ |
| OLD | NEW |