#ifndef UI_WM_PUBLIC_ACTIVATION_CHANGE_OBSERVER_H_
#define UI_WM_PUBLIC_ACTIVATION_CHANGE_OBSERVER_H_
#include "base/observer_list_types.h"
#include "ui/wm/public/wm_public_export.h"
namespace aura {
class Window;
}
namespace wm {
class WM_PUBLIC_EXPORT ActivationChangeObserver : public base::CheckedObserver { … };
WM_PUBLIC_EXPORT void SetActivationChangeObserver(
aura::Window* window,
ActivationChangeObserver* observer);
WM_PUBLIC_EXPORT ActivationChangeObserver* GetActivationChangeObserver(
aura::Window* window);
}
#endif