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

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

Issue 558253003: display: Move ui/display/types/chromeos/* to ui/display/types/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 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
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/projecting_observer_chromeos.h" 5 #include "ash/display/projecting_observer_chromeos.h"
6 6
7 #include "chromeos/dbus/dbus_thread_manager.h" 7 #include "chromeos/dbus/dbus_thread_manager.h"
8 #include "chromeos/dbus/power_manager_client.h" 8 #include "chromeos/dbus/power_manager_client.h"
9 #include "ui/display/types/chromeos/display_snapshot.h" 9 #include "ui/display/types/display_snapshot.h"
10 10
11 namespace ash { 11 namespace ash {
12 12
13 ProjectingObserver::ProjectingObserver() 13 ProjectingObserver::ProjectingObserver()
14 : has_internal_output_(false), 14 : has_internal_output_(false),
15 output_count_(0), 15 output_count_(0),
16 casting_session_count_(0) {} 16 casting_session_count_(0) {}
17 17
18 ProjectingObserver::~ProjectingObserver() {} 18 ProjectingObserver::~ProjectingObserver() {}
19 19
(...skipping 30 matching lines...) Expand all
50 // "Projecting" is defined as having more than 1 output connected while at 50 // "Projecting" is defined as having more than 1 output connected while at
51 // least one of them is an internal output. 51 // least one of them is an internal output.
52 bool projecting = has_internal_output_ && 52 bool projecting = has_internal_output_ &&
53 (output_count_ + casting_session_count_ > 1); 53 (output_count_ + casting_session_count_ > 1);
54 54
55 chromeos::DBusThreadManager::Get()->GetPowerManagerClient()->SetIsProjecting( 55 chromeos::DBusThreadManager::Get()->GetPowerManagerClient()->SetIsProjecting(
56 projecting); 56 projecting);
57 } 57 }
58 58
59 } // namespace ash 59 } // namespace ash
OLDNEW
« no previous file with comments | « ash/display/display_change_observer_chromeos_unittest.cc ('k') | ash/touch/touch_transformer_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698