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

Side by Side Diff: ash/wm/overview/transparent_activate_window_button_delegate.h

Issue 810033010: Remove TransparentActivateWindowButton from Overview Mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed nits Created 5 years, 11 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 2014 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 // A delegate that
5
6 #ifndef ASH_WM_OVERVIEW_TRANSPARENT_ACTIVATE_WINDOW_BUTTON_DELEGATE_H_
7 #define ASH_WM_OVERVIEW_TRANSPARENT_ACTIVATE_WINDOW_BUTTON_DELEGATE_H_
8
9 #include "ash/ash_export.h"
10
11 namespace ash {
12
13 // A pure-virtual delegate that is used by the TransparentActivateWindowButton
14 // to manipulate windows while in overview mode.
15 class ASH_EXPORT TransparentActivateWindowButtonDelegate {
16 public:
17 // Called when the TransparentActivateWindowButton was selected.
18 virtual void Select() = 0;
19
20 protected:
21 TransparentActivateWindowButtonDelegate() {}
22 virtual ~TransparentActivateWindowButtonDelegate() {}
23
24 private:
25 DISALLOW_COPY_AND_ASSIGN(TransparentActivateWindowButtonDelegate);
26 };
27
28 } // namespace ash
29
30 #endif // ASH_WM_OVERVIEW_TRANSPARENT_ACTIVATE_WINDOW_BUTTON_DELEGATE_H_
OLDNEW
« no previous file with comments | « ash/wm/overview/transparent_activate_window_button.cc ('k') | ash/wm/overview/window_selector_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698