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

Side by Side Diff: ash/shelf/shelf_background_animator_delegate.h

Issue 2053113002: Replaced BackgroundAnimator with ShelfBackgroundAnimator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698