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

Side by Side Diff: ash/common/wm/maximize_mode/maximize_mode_screenshot_observer.h

Issue 2190773002: Fix Volume slider is captured in screenshot done in touchview mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: not using default parameter Created 4 years, 4 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef ASH_COMMON_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_SCREENSHOT_OBSERVER_H_
6 #define ASH_COMMON_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_SCREENSHOT_OBSERVER_H_
7
8 #include "ash/ash_export.h"
9
10 namespace ash {
11
12 class ASH_EXPORT MaximizeModeScreenshotObserver {
13 public:
14 virtual ~MaximizeModeScreenshotObserver() {}
15
16 // Notifies when screenshot is going to be taken by volume-down modifier +
17 // power button accelerator combinations.
Daniel Erat 2016/07/28 23:57:52 nit: delete "combinations"
Qiang(Joe) Xu 2016/07/29 04:30:31 Done.
18 virtual void OnWillTakeScreenshotInMaximizeMode() = 0;
19 };
20
21 } // namespace ash
22
23 #endif // ASH_COMMON_WM_MAXIMIZE_MODE_MAXIMIZE_MODE_SCREENSHOT_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698