summaryrefslogtreecommitdiffstats
path: root/ash/shelf/shelf_icon_observer.h
blob: 8132a8939e8897bd85667f3cb1ef94a3631a3946 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_SHELF_SHELF_ICON_OBSERVER_H_
#define ASH_SHELF_SHELF_ICON_OBSERVER_H_

#include "ash/ash_export.h"

namespace ash {

class ASH_EXPORT ShelfIconObserver {
 public:
  // Invoked when any icon on shelf changes position.
  virtual void OnShelfIconPositionsChanged() = 0;

 protected:
  virtual ~ShelfIconObserver() {}
};

}  // namespace ash

#endif  // ASH_SHELF_SHELF_ICON_OBSERVER_H_