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

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

Issue 1952353003: Show message to indicate that mirriring with more than 3 display is not supported. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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_error_observer_chromeos.cc ('k') | ash/display/display_manager_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 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 4
5 #include "ash/display/display_error_observer_chromeos.h" 5 #include "ash/display/display_error_observer_chromeos.h"
6 6
7 #include "ash/display/display_util.h"
7 #include "ash/shell.h" 8 #include "ash/shell.h"
8 #include "ash/test/ash_test_base.h" 9 #include "ash/test/ash_test_base.h"
9 #include "grit/ash_strings.h" 10 #include "grit/ash_strings.h"
10 #include "ui/aura/window.h" 11 #include "ui/aura/window.h"
11 #include "ui/base/l10n/l10n_util.h" 12 #include "ui/base/l10n/l10n_util.h"
12 #include "ui/views/controls/label.h" 13 #include "ui/views/controls/label.h"
13 #include "ui/views/view.h" 14 #include "ui/views/view.h"
14 #include "ui/views/widget/widget.h" 15 #include "ui/views/widget/widget.h"
15 16
16 namespace ash { 17 namespace ash {
17 18
18 class DisplayErrorObserverTest : public test::AshTestBase { 19 class DisplayErrorObserverTest : public test::AshTestBase {
19 protected: 20 protected:
20 DisplayErrorObserverTest() { 21 DisplayErrorObserverTest() {
21 } 22 }
22 23
23 ~DisplayErrorObserverTest() override {} 24 ~DisplayErrorObserverTest() override {}
24 25
25 void SetUp() override { 26 void SetUp() override {
26 test::AshTestBase::SetUp(); 27 test::AshTestBase::SetUp();
27 observer_.reset(new DisplayErrorObserver()); 28 observer_.reset(new DisplayErrorObserver());
28 } 29 }
29 30
30 protected: 31 protected:
31 DisplayErrorObserver* observer() { return observer_.get(); } 32 DisplayErrorObserver* observer() { return observer_.get(); }
32 33
33 base::string16 GetMessageContents() { 34 base::string16 GetMessageContents() {
34 return observer_->GetDisplayErrorNotificationMessageForTest(); 35 return GetDisplayErrorNotificationMessageForTest();
35 } 36 }
36 37
37 private: 38 private:
38 std::unique_ptr<DisplayErrorObserver> observer_; 39 std::unique_ptr<DisplayErrorObserver> observer_;
39 40
40 DISALLOW_COPY_AND_ASSIGN(DisplayErrorObserverTest); 41 DISALLOW_COPY_AND_ASSIGN(DisplayErrorObserverTest);
41 }; 42 };
42 43
43 TEST_F(DisplayErrorObserverTest, Normal) { 44 TEST_F(DisplayErrorObserverTest, Normal) {
44 if (!SupportsMultipleDisplays()) 45 if (!SupportsMultipleDisplays())
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 GetMessageContents()); 84 GetMessageContents());
84 85
85 observer()->OnDisplayModeChangeFailed( 86 observer()->OnDisplayModeChangeFailed(
86 ui::DisplayConfigurator::DisplayStateList(), 87 ui::DisplayConfigurator::DisplayStateList(),
87 ui::MULTIPLE_DISPLAY_STATE_DUAL_EXTENDED); 88 ui::MULTIPLE_DISPLAY_STATE_DUAL_EXTENDED);
88 EXPECT_EQ(l10n_util::GetStringUTF16(IDS_ASH_DISPLAY_FAILURE_ON_NON_MIRRORING), 89 EXPECT_EQ(l10n_util::GetStringUTF16(IDS_ASH_DISPLAY_FAILURE_ON_NON_MIRRORING),
89 GetMessageContents()); 90 GetMessageContents());
90 } 91 }
91 92
92 } // namespace ash 93 } // namespace ash
OLDNEW
« no previous file with comments | « ash/display/display_error_observer_chromeos.cc ('k') | ash/display/display_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698