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

Unified Diff: ash/display/projecting_observer_chromeos.cc

Issue 2613493002: Fix namespace for src/ui/display/. (Closed)
Patch Set: Rebase. Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/display/projecting_observer_chromeos.h ('k') | ash/display/projecting_observer_chromeos_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/projecting_observer_chromeos.cc
diff --git a/ash/display/projecting_observer_chromeos.cc b/ash/display/projecting_observer_chromeos.cc
index 58c7bafc713aa0232b91ccb74fa9ee9676536283..52d18afc85b277780ffbc39b5111598688a9b0f6 100644
--- a/ash/display/projecting_observer_chromeos.cc
+++ b/ash/display/projecting_observer_chromeos.cc
@@ -22,12 +22,13 @@ ProjectingObserver::ProjectingObserver(
ProjectingObserver::~ProjectingObserver() {}
void ProjectingObserver::OnDisplayModeChanged(
- const ui::DisplayConfigurator::DisplayStateList& display_states) {
+ const display::DisplayConfigurator::DisplayStateList& display_states) {
has_internal_output_ = false;
output_count_ = display_states.size();
for (size_t i = 0; i < display_states.size(); ++i) {
- if (display_states[i]->type() == ui::DISPLAY_CONNECTION_TYPE_INTERNAL) {
+ if (display_states[i]->type() ==
+ display::DISPLAY_CONNECTION_TYPE_INTERNAL) {
has_internal_output_ = true;
break;
}
« no previous file with comments | « ash/display/projecting_observer_chromeos.h ('k') | ash/display/projecting_observer_chromeos_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698