Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |