| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 #include "base/files/file_path.h" | 5 #include "base/files/file_path.h" |
| 6 #include "base/location.h" | 6 #include "base/location.h" |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "base/single_thread_task_runner.h" | 8 #include "base/single_thread_task_runner.h" |
| 9 #include "base/strings/string_number_conversions.h" | 9 #include "base/strings/string_number_conversions.h" |
| 10 #include "base/threading/thread_task_runner_handle.h" | 10 #include "base/threading/thread_task_runner_handle.h" |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 << message_; | 273 << message_; |
| 274 } | 274 } |
| 275 | 275 |
| 276 IN_PROC_BROWSER_TEST_F(AutomationApiTest, DocumentSelection) { | 276 IN_PROC_BROWSER_TEST_F(AutomationApiTest, DocumentSelection) { |
| 277 StartEmbeddedTestServer(); | 277 StartEmbeddedTestServer(); |
| 278 ASSERT_TRUE( | 278 ASSERT_TRUE( |
| 279 RunExtensionSubtest("automation/tests/tabs", "document_selection.html")) | 279 RunExtensionSubtest("automation/tests/tabs", "document_selection.html")) |
| 280 << message_; | 280 << message_; |
| 281 } | 281 } |
| 282 | 282 |
| 283 IN_PROC_BROWSER_TEST_F(AutomationApiTest, HitTest) { |
| 284 StartEmbeddedTestServer(); |
| 285 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "hit_test.html")) |
| 286 << message_; |
| 287 } |
| 288 |
| 283 } // namespace extensions | 289 } // namespace extensions |
| OLD | NEW |