forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay_error_observer_chromeos.cc
36 lines (28 loc) · 1.17 KB
/
display_error_observer_chromeos.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/display/display_error_observer_chromeos.h"
#include "ash/display/display_util.h"
#include "base/strings/string_number_conversions.h"
#include "grit/ash_strings.h"
namespace ash {
DisplayErrorObserver::DisplayErrorObserver() {
}
DisplayErrorObserver::~DisplayErrorObserver() {
}
void DisplayErrorObserver::OnDisplayModeChangeFailed(
const ui::DisplayConfigurator::DisplayStateList& displays,
ui::MultipleDisplayState new_state) {
LOG(ERROR) << "Failed to configure the following display(s):";
for (const auto& display : displays) {
LOG(ERROR) << "- Display with ID = " << display->display_id()
<< ", and EDID = " << base::HexEncode(display->edid().data(),
display->edid().size())
<< ".";
}
ShowDisplayErrorNotification(
(new_state == ui::MULTIPLE_DISPLAY_STATE_DUAL_MIRROR)
? IDS_ASH_DISPLAY_FAILURE_ON_MIRRORING
: IDS_ASH_DISPLAY_FAILURE_ON_NON_MIRRORING);
}
} // namespace ash