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

Side by Side Diff: ash/display/display_util_unittest.cc

Issue 1261693004: Allow dynamic enabling/disabling of unified desktop (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« no previous file with comments | « ash/display/display_util.cc ('k') | ash/display/unified_mouse_warp_controller_unittest.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 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 "ash/display/display_util.h" 5 #include "ash/display/display_util.h"
6 6
7 #include "ash/root_window_controller.h" 7 #include "ash/root_window_controller.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/display_manager_test_api.h" 10 #include "ash/test/display_manager_test_api.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 } 91 }
92 } 92 }
93 93
94 TEST_F(DisplayUtilTest, CreateDisplayIdPair) { 94 TEST_F(DisplayUtilTest, CreateDisplayIdPair) {
95 DisplayIdPair pair = CreateDisplayIdPair(10, 1); 95 DisplayIdPair pair = CreateDisplayIdPair(10, 1);
96 EXPECT_EQ(1, pair.first); 96 EXPECT_EQ(1, pair.first);
97 EXPECT_EQ(10, pair.second); 97 EXPECT_EQ(10, pair.second);
98 pair = CreateDisplayIdPair(10, 100); 98 pair = CreateDisplayIdPair(10, 100);
99 EXPECT_EQ(10, pair.first); 99 EXPECT_EQ(10, pair.first);
100 EXPECT_EQ(100, pair.second); 100 EXPECT_EQ(100, pair.second);
101 {
102 test::ScopedSetInternalDisplayId set_internal(100);
103 pair = CreateDisplayIdPair(10, 100);
104 EXPECT_EQ(100, pair.first);
105 EXPECT_EQ(10, pair.second);
101 106
102 test::ScopedSetInternalDisplayId set_internal(100); 107 pair = CreateDisplayIdPair(100, 10);
103 pair = CreateDisplayIdPair(10, 100); 108 EXPECT_EQ(100, pair.first);
104 EXPECT_EQ(100, pair.first); 109 EXPECT_EQ(10, pair.second);
105 EXPECT_EQ(10, pair.second); 110 }
111
112 {
113 test::ScopedSetInternalDisplayId set_internal(10);
114 pair = CreateDisplayIdPair(10, 100);
115 EXPECT_EQ(10, pair.first);
116 EXPECT_EQ(100, pair.second);
117
118 pair = CreateDisplayIdPair(100, 10);
119 EXPECT_EQ(10, pair.first);
120 EXPECT_EQ(100, pair.second);
121 }
106 } 122 }
107 123
108 } // namespace 124 } // namespace
OLDNEW
« no previous file with comments | « ash/display/display_util.cc ('k') | ash/display/unified_mouse_warp_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698