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

Side by Side Diff: ash/test/ash_test_base.cc

Issue 235043005: x11: Remove X11 message-pump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 6 years, 8 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/shell.cc ('k') | ash/wm/ash_native_cursor_manager_interactive_uitest.cc » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "ash/test/ash_test_base.h" 5 #include "ash/test/ash_test_base.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/ash_switches.h" 10 #include "ash/ash_switches.h"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "ash/test/test_metro_viewer_process_host.h" 42 #include "ash/test/test_metro_viewer_process_host.h"
43 #include "base/test/test_process_killer_win.h" 43 #include "base/test/test_process_killer_win.h"
44 #include "base/win/metro.h" 44 #include "base/win/metro.h"
45 #include "base/win/windows_version.h" 45 #include "base/win/windows_version.h"
46 #include "ui/aura/remote_window_tree_host_win.h" 46 #include "ui/aura/remote_window_tree_host_win.h"
47 #include "ui/aura/window_tree_host_win.h" 47 #include "ui/aura/window_tree_host_win.h"
48 #include "win8/test/test_registrar_constants.h" 48 #include "win8/test/test_registrar_constants.h"
49 #endif 49 #endif
50 50
51 #if defined(USE_X11) 51 #if defined(USE_X11)
52 #include <X11/Xlib.h> 52 #include "ui/gfx/x/x11_connection.h"
53 #endif 53 #endif
54 54
55 namespace ash { 55 namespace ash {
56 namespace test { 56 namespace test {
57 namespace { 57 namespace {
58 58
59 class AshEventGeneratorDelegate : public aura::test::EventGeneratorDelegate { 59 class AshEventGeneratorDelegate : public aura::test::EventGeneratorDelegate {
60 public: 60 public:
61 AshEventGeneratorDelegate() {} 61 AshEventGeneratorDelegate() {}
62 virtual ~AshEventGeneratorDelegate() {} 62 virtual ~AshEventGeneratorDelegate() {}
(...skipping 28 matching lines...) Expand all
91 ///////////////////////////////////////////////////////////////////////////// 91 /////////////////////////////////////////////////////////////////////////////
92 92
93 AshTestBase::AshTestBase() 93 AshTestBase::AshTestBase()
94 : setup_called_(false), 94 : setup_called_(false),
95 teardown_called_(false), 95 teardown_called_(false),
96 start_session_(true) { 96 start_session_(true) {
97 #if defined(USE_X11) 97 #if defined(USE_X11)
98 // This is needed for tests which use this base class but are run in browser 98 // This is needed for tests which use this base class but are run in browser
99 // test binaries so don't get the default initialization in the unit test 99 // test binaries so don't get the default initialization in the unit test
100 // suite. 100 // suite.
101 XInitThreads(); 101 gfx::InitializeThreadedX11();
102 #endif 102 #endif
103 103
104 thread_bundle_.reset(new content::TestBrowserThreadBundle); 104 thread_bundle_.reset(new content::TestBrowserThreadBundle);
105 // Must initialize |ash_test_helper_| here because some tests rely on 105 // Must initialize |ash_test_helper_| here because some tests rely on
106 // AshTestBase methods before they call AshTestBase::SetUp(). 106 // AshTestBase methods before they call AshTestBase::SetUp().
107 ash_test_helper_.reset(new AshTestHelper(base::MessageLoopForUI::current())); 107 ash_test_helper_.reset(new AshTestHelper(base::MessageLoopForUI::current()));
108 } 108 }
109 109
110 AshTestBase::~AshTestBase() { 110 AshTestBase::~AshTestBase() {
111 CHECK(setup_called_) 111 CHECK(setup_called_)
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 342
343 void AshTestBase::UnblockUserSession() { 343 void AshTestBase::UnblockUserSession() {
344 Shell::GetInstance()->session_state_delegate()->UnlockScreen(); 344 Shell::GetInstance()->session_state_delegate()->UnlockScreen();
345 SetSessionStarted(true); 345 SetSessionStarted(true);
346 SetUserAddingScreenRunning(false); 346 SetUserAddingScreenRunning(false);
347 } 347 }
348 348
349 349
350 } // namespace test 350 } // namespace test
351 } // namespace ash 351 } // namespace ash
OLDNEW
« no previous file with comments | « ash/shell.cc ('k') | ash/wm/ash_native_cursor_manager_interactive_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698