// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/aura/client/focus_change_observer.h" #include "ui/aura/window.h" #include "ui/base/class_property.h" DEFINE_UI_CLASS_PROPERTY_TYPE(…) namespace aura { namespace client { DEFINE_UI_CLASS_PROPERTY_KEY(…) FocusChangeObserver::~FocusChangeObserver() { … } FocusChangeObserver* GetFocusChangeObserver(Window* window) { … } void SetFocusChangeObserver(Window* window, FocusChangeObserver* focus_change_observer) { … } } // namespace client } // namespace aura