OLD | NEW |
---|---|
(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 #include "ash/ash_export.h" | |
6 | |
7 namespace ash { | |
8 | |
9 class ASH_EXPORT ShelfBackgroundAnimatorDelegate { | |
10 public: | |
11 virtual void UpdateBackgroundAlpha(int alpha) = 0; | |
12 | |
13 protected: | |
14 ShelfBackgroundAnimatorDelegate() {} | |
15 ~ShelfBackgroundAnimatorDelegate() {} | |
16 | |
17 private: | |
18 DISALLOW_COPY_AND_ASSIGN(ShelfBackgroundAnimatorDelegate); | |
James Cook
2016/06/09 23:40:37
Do you need this, given that there's a pure-virtua
| |
19 }; | |
20 | |
21 } // namespace ash | |
OLD | NEW |