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

Side by Side Diff: ash/wm/maximize_mode/maximize_mode_backdrop_delegate_impl.h

Issue 2906803002: Rename MaximizeMode to TabletMode (Closed)
Patch Set: updated filter Created 3 years, 7 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 2017 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 #include "ash/wm/workspace/backdrop_delegate.h"
6
7 #include "ash/ash_export.h"
8 #include "base/macros.h"
9
10 namespace ash {
11
12 // A backdrop delegate for MaximizedMode, which always creates a backdrop.
13 // This is also used in the WorkspaceLayoutManagerBackdropTest, hence
14 // is public.
15 class ASH_EXPORT MaximizeModeBackdropDelegateImpl : public BackdropDelegate {
16 public:
17 MaximizeModeBackdropDelegateImpl();
18 ~MaximizeModeBackdropDelegateImpl() override;
19
20 protected:
21 bool HasBackdrop(aura::Window* window) override;
22
23 private:
24 DISALLOW_COPY_AND_ASSIGN(MaximizeModeBackdropDelegateImpl);
25 };
26
27 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698