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

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

Issue 2884623002: Refactor backdrop (Closed)
Patch Set: Generalize Backdrop 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 class ASH_EXPORT MaximizeModeBackdropDelegateImpl : public BackdropDelegate {
James Cook 2017/05/15 21:57:38 Class docs please. (Like, why is this a public cla
oshima 2017/05/16 08:22:08 By public class, you mean the ctor is public? I ca
James Cook 2017/05/16 15:12:14 Yes, I meant have this class be in the .cc file fo
oshima 2017/05/17 07:44:33 Looks like the some of existing tests assume it's
13 public:
14 MaximizeModeBackdropDelegateImpl() {}
James Cook 2017/05/15 21:57:38 nit: = default (and consider moving to .cc)
oshima 2017/05/16 08:22:08 Done. Is "= default" now recommended? Just double
James Cook 2017/05/16 15:12:14 I don't think the style guide has an opinion. I pr
15 ~MaximizeModeBackdropDelegateImpl() override {}
16
17 protected:
18 bool HasBackdrop(WmWindow* window) override;
19
20 private:
21 DISALLOW_COPY_AND_ASSIGN(MaximizeModeBackdropDelegateImpl);
22 };
23
24 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698