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

Side by Side Diff: ash/common/wm_shell.h

Issue 2330403002: Do not activate system tray bubble by default (Closed)
Patch Set: Do not activate system tray bubble by default Created 4 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
« no previous file with comments | « ash/common/system/update/tray_update.cc ('k') | ash/mus/bridge/wm_shell_mus.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_COMMON_WM_SHELL_H_ 5 #ifndef ASH_COMMON_WM_SHELL_H_
6 #define ASH_COMMON_WM_SHELL_H_ 6 #define ASH_COMMON_WM_SHELL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 29 matching lines...) Expand all
40 } 40 }
41 41
42 namespace ash { 42 namespace ash {
43 43
44 class AcceleratorController; 44 class AcceleratorController;
45 class AccessibilityDelegate; 45 class AccessibilityDelegate;
46 class BrightnessControlDelegate; 46 class BrightnessControlDelegate;
47 class FocusCycler; 47 class FocusCycler;
48 class ImmersiveContextAsh; 48 class ImmersiveContextAsh;
49 class ImmersiveFullscreenController; 49 class ImmersiveFullscreenController;
50 class KeyEventWatcher;
50 class KeyboardBrightnessControlDelegate; 51 class KeyboardBrightnessControlDelegate;
51 class KeyboardUI; 52 class KeyboardUI;
52 class MaximizeModeController; 53 class MaximizeModeController;
53 class MruWindowTracker; 54 class MruWindowTracker;
54 class NewWindowDelegate; 55 class NewWindowDelegate;
55 class PaletteDelegate; 56 class PaletteDelegate;
56 class ScopedDisableInternalMouseAndKeyboard; 57 class ScopedDisableInternalMouseAndKeyboard;
57 class SessionStateDelegate; 58 class SessionStateDelegate;
58 class ShelfDelegate; 59 class ShelfDelegate;
59 class ShelfModel; 60 class ShelfModel;
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 302
302 virtual std::unique_ptr<WorkspaceEventHandler> CreateWorkspaceEventHandler( 303 virtual std::unique_ptr<WorkspaceEventHandler> CreateWorkspaceEventHandler(
303 WmWindow* workspace_window) = 0; 304 WmWindow* workspace_window) = 0;
304 305
305 virtual std::unique_ptr<ScopedDisableInternalMouseAndKeyboard> 306 virtual std::unique_ptr<ScopedDisableInternalMouseAndKeyboard>
306 CreateScopedDisableInternalMouseAndKeyboard() = 0; 307 CreateScopedDisableInternalMouseAndKeyboard() = 0;
307 308
308 virtual std::unique_ptr<ImmersiveFullscreenController> 309 virtual std::unique_ptr<ImmersiveFullscreenController>
309 CreateImmersiveFullscreenController() = 0; 310 CreateImmersiveFullscreenController() = 0;
310 311
312 virtual std::unique_ptr<KeyEventWatcher> CreateKeyEventWatcher() = 0;
313
311 void CreateShelfDelegate(); 314 void CreateShelfDelegate();
312 315
313 // Called after maximize mode has started, windows might still animate though. 316 // Called after maximize mode has started, windows might still animate though.
314 void OnMaximizeModeStarted(); 317 void OnMaximizeModeStarted();
315 318
316 // Called after maximize mode has ended, windows might still be returning to 319 // Called after maximize mode has ended, windows might still be returning to
317 // their original position. 320 // their original position.
318 void OnMaximizeModeEnded(); 321 void OnMaximizeModeEnded();
319 322
320 // Called when the overview mode is about to be started (before the windows 323 // Called when the overview mode is about to be started (before the windows
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 scoped_refptr<base::SequencedWorkerPool> blocking_pool_; 472 scoped_refptr<base::SequencedWorkerPool> blocking_pool_;
470 473
471 #if defined(OS_CHROMEOS) 474 #if defined(OS_CHROMEOS)
472 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_; 475 std::unique_ptr<LogoutConfirmationController> logout_confirmation_controller_;
473 #endif 476 #endif
474 }; 477 };
475 478
476 } // namespace ash 479 } // namespace ash
477 480
478 #endif // ASH_COMMON_WM_SHELL_H_ 481 #endif // ASH_COMMON_WM_SHELL_H_
OLDNEW
« no previous file with comments | « ash/common/system/update/tray_update.cc ('k') | ash/mus/bridge/wm_shell_mus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698