summaryrefslogtreecommitdiffstats
path: root/chromium/ash/desktop_background/desktop_background_controller_observer.h
blob: 9f74306839b8f3cc9f139da8d22c28f04cdd191b (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 (c) 2012 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_DESKTOP_BACKGROUND_DESKTOP_BACKGROUND_CONTROLLER_OBSERVER_H_
#define ASH_DESKTOP_BACKGROUND_DESKTOP_BACKGROUND_CONTROLLER_OBSERVER_H_

#include "ash/ash_export.h"

namespace ash {

class ASH_EXPORT DesktopBackgroundControllerObserver {
 public:
  // Invoked when the wallpaper data is changed.
  virtual void OnWallpaperDataChanged() = 0;

 protected:
  virtual ~DesktopBackgroundControllerObserver() {}
};

}  // namespace ash

#endif  // ASH_DESKTOP_BACKGROUND_DESKTOP_BACKGROUND_CONTROLLER_OBSERVER_H_