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

Side by Side Diff: ash/shell.h

Issue 9570013: Activate the status area only when it's focused using the keyboard (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix new FocusCycler tests Created 8 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « ash/focus_cycler_unittest.cc ('k') | ash/status_area/status_area_view.h » ('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 (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
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
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_
OLDNEW
« no previous file with comments | « ash/focus_cycler_unittest.cc ('k') | ash/status_area/status_area_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698