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

Side by Side Diff: ash/wm/ash_native_cursor_manager_interactive_uitest.cc

Issue 190663012: Run ContentMain in a browser_test's browser process. This removes duplication of code in the browse… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: try to fix android by restoring old path just for it Created 6 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 | Annotate | Revision Log
« no previous file with comments | « ash/test/ash_test_base.cc ('k') | base/i18n/icu_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 #include "ash/wm/ash_native_cursor_manager.h" 4 #include "ash/wm/ash_native_cursor_manager.h"
5 5
6 #include "ash/display/display_info.h" 6 #include "ash/display/display_info.h"
7 #include "ash/display/display_manager.h" 7 #include "ash/display/display_manager.h"
8 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "ash/test/ash_test_base.h" 9 #include "ash/test/ash_test_base.h"
10 #include "ash/test/cursor_manager_test_api.h" 10 #include "ash/test/cursor_manager_test_api.h"
11 #include "base/path_service.h"
11 #include "base/run_loop.h" 12 #include "base/run_loop.h"
12 #include "ui/aura/window.h" 13 #include "ui/aura/window.h"
13 #include "ui/aura/window_event_dispatcher.h" 14 #include "ui/aura/window_event_dispatcher.h"
15 #include "ui/base/resource/resource_bundle.h"
14 #include "ui/base/test/ui_controls.h" 16 #include "ui/base/test/ui_controls.h"
17 #include "ui/base/ui_base_paths.h"
18 #include "ui/gl/gl_surface.h"
15 19
16 #if defined(USE_X11) 20 #if defined(USE_X11)
17 #include <X11/Xlib.h> 21 #include <X11/Xlib.h>
18 22
19 #include "base/message_loop/message_pump_x11.h" 23 #include "base/message_loop/message_pump_x11.h"
20 #endif 24 #endif
21 25
22 namespace ash { 26 namespace ash {
23 27
24 using ::wm::CursorManager; 28 using ::wm::CursorManager;
25 typedef test::AshTestBase AshNativeCursorManagerTest; 29
30 class AshNativeCursorManagerTest : public test::AshTestBase {
31 public:
32 AshNativeCursorManagerTest() {}
33 virtual ~AshNativeCursorManagerTest() {}
34
35 virtual void SetUp() OVERRIDE {
36 gfx::GLSurface::InitializeOneOffForTests();
37
38 ui::RegisterPathProvider();
39 ResourceBundle::InitSharedInstanceWithLocale("en-US", NULL);
40 base::FilePath resources_pack_path;
41 PathService::Get(base::DIR_MODULE, &resources_pack_path);
42 resources_pack_path =
43 resources_pack_path.Append(FILE_PATH_LITERAL("resources.pak"));
44 ResourceBundle::GetSharedInstance().AddDataPackFromPath(
45 resources_pack_path, ui::SCALE_FACTOR_NONE);
46
47 test::AshTestBase::SetUp();
48 }
49 };
26 50
27 namespace { 51 namespace {
28 52
29 internal::DisplayInfo CreateDisplayInfo(int64 id, 53 internal::DisplayInfo CreateDisplayInfo(int64 id,
30 const gfx::Rect& bounds, 54 const gfx::Rect& bounds,
31 float device_scale_factor) { 55 float device_scale_factor) {
32 internal::DisplayInfo info(id, "", false); 56 internal::DisplayInfo info(id, "", false);
33 info.SetBounds(bounds); 57 info.SetBounds(bounds);
34 info.set_device_scale_factor(device_scale_factor); 58 info.set_device_scale_factor(device_scale_factor);
35 return info; 59 return info;
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 display_manager->OnNativeDisplaysChanged(display_info_list); 105 display_manager->OnNativeDisplaysChanged(display_info_list);
82 106
83 MoveMouseSync(Shell::GetAllRootWindows()[0], 10, 10); 107 MoveMouseSync(Shell::GetAllRootWindows()[0], 10, 10);
84 EXPECT_EQ(1.0f, test_api.GetDisplay().device_scale_factor()); 108 EXPECT_EQ(1.0f, test_api.GetDisplay().device_scale_factor());
85 109
86 MoveMouseSync(Shell::GetAllRootWindows()[0], 600, 10); 110 MoveMouseSync(Shell::GetAllRootWindows()[0], 600, 10);
87 EXPECT_EQ(2.0f, test_api.GetDisplay().device_scale_factor()); 111 EXPECT_EQ(2.0f, test_api.GetDisplay().device_scale_factor());
88 } 112 }
89 113
90 } // namespace ash 114 } // namespace ash
OLDNEW
« no previous file with comments | « ash/test/ash_test_base.cc ('k') | base/i18n/icu_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698