| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef ASH_SHELL_H_ | 5 #ifndef ASH_SHELL_H_ |
| 6 #define ASH_SHELL_H_ | 6 #define ASH_SHELL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 } | 188 } |
| 189 PowerButtonController* power_button_controller() { | 189 PowerButtonController* power_button_controller() { |
| 190 return power_button_controller_.get(); | 190 return power_button_controller_.get(); |
| 191 } | 191 } |
| 192 VideoDetector* video_detector() { | 192 VideoDetector* video_detector() { |
| 193 return video_detector_.get(); | 193 return video_detector_.get(); |
| 194 } | 194 } |
| 195 WindowCycleController* window_cycle_controller() { | 195 WindowCycleController* window_cycle_controller() { |
| 196 return window_cycle_controller_.get(); | 196 return window_cycle_controller_.get(); |
| 197 } | 197 } |
| 198 internal::FocusCycler* focus_cycler() { |
| 199 return focus_cycler_.get(); |
| 200 } |
| 198 AudioController* audio_controller() const { | 201 AudioController* audio_controller() const { |
| 199 return audio_controller_; | 202 return audio_controller_; |
| 200 } | 203 } |
| 201 BrightnessController* brightness_controller() const { | 204 BrightnessController* brightness_controller() const { |
| 202 return brightness_controller_; | 205 return brightness_controller_; |
| 203 } | 206 } |
| 204 PowerStatusController* power_status_controller() const { | 207 PowerStatusController* power_status_controller() const { |
| 205 return power_status_controller_; | 208 return power_status_controller_; |
| 206 } | 209 } |
| 207 | 210 |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 328 // Offset between the corner of the status area and the corner of the screen | 331 // Offset between the corner of the status area and the corner of the screen |
| 329 // when in the compact window mode. | 332 // when in the compact window mode. |
| 330 gfx::Size compact_status_area_offset_; | 333 gfx::Size compact_status_area_offset_; |
| 331 | 334 |
| 332 DISALLOW_COPY_AND_ASSIGN(Shell); | 335 DISALLOW_COPY_AND_ASSIGN(Shell); |
| 333 }; | 336 }; |
| 334 | 337 |
| 335 } // namespace ash | 338 } // namespace ash |
| 336 | 339 |
| 337 #endif // ASH_SHELL_H_ | 340 #endif // ASH_SHELL_H_ |
| OLD | NEW |