Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: chrome/browser/extensions/api/automation/automation_apitest.cc

Issue 2729363002: chromeos: Move files in //ash/common to //ash, part 3 (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 16 matching lines...) Expand all
27 #include "net/test/embedded_test_server/embedded_test_server.h" 27 #include "net/test/embedded_test_server/embedded_test_server.h"
28 #include "testing/gtest/include/gtest/gtest.h" 28 #include "testing/gtest/include/gtest/gtest.h"
29 #include "ui/accessibility/ax_node.h" 29 #include "ui/accessibility/ax_node.h"
30 #include "ui/accessibility/ax_serializable_tree.h" 30 #include "ui/accessibility/ax_serializable_tree.h"
31 #include "ui/accessibility/ax_tree.h" 31 #include "ui/accessibility/ax_tree.h"
32 #include "ui/accessibility/ax_tree_serializer.h" 32 #include "ui/accessibility/ax_tree_serializer.h"
33 #include "ui/accessibility/tree_generator.h" 33 #include "ui/accessibility/tree_generator.h"
34 34
35 #if defined(OS_CHROMEOS) 35 #if defined(OS_CHROMEOS)
36 #include "ash/accelerators/accelerator_controller.h" 36 #include "ash/accelerators/accelerator_controller.h"
37 #include "ash/common/wm_shell.h" 37 #include "ash/wm_shell.h"
38 #include "chrome/browser/ui/aura/accessibility/automation_manager_aura.h" 38 #include "chrome/browser/ui/aura/accessibility/automation_manager_aura.h"
39 #endif 39 #endif
40 40
41 namespace extensions { 41 namespace extensions {
42 42
43 namespace { 43 namespace {
44 static const char kDomain[] = "a.com"; 44 static const char kDomain[] = "a.com";
45 static const char kSitesDir[] = "automation/sites"; 45 static const char kSitesDir[] = "automation/sites";
46 static const char kGotTree[] = "got_tree"; 46 static const char kGotTree[] = "got_tree";
47 } // anonymous namespace 47 } // anonymous namespace
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 } // namespace extensions 283 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698