blob: 5e3d7cae0652fb5197028333003b64fc74ffd42c (
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 2014 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 COMPONENTS_WALLPAPER_WALLPAPER_RESIZER_OBSERVER_H_
#define COMPONENTS_WALLPAPER_WALLPAPER_RESIZER_OBSERVER_H_
#include "components/wallpaper/wallpaper_export.h"
namespace wallpaper {
class WALLPAPER_EXPORT WallpaperResizerObserver {
public:
// Invoked when the wallpaper is resized.
virtual void OnWallpaperResized() = 0;
protected:
virtual ~WallpaperResizerObserver() {}
};
} // namespace wallpaper
#endif // COMPONENTS_WALLPAPER_WALLPAPER_RESIZER_OBSERVER_H_
|