chromium/ui/views/focus/focus_manager_factory.h

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_VIEWS_FOCUS_FOCUS_MANAGER_FACTORY_H_
#define UI_VIEWS_FOCUS_FOCUS_MANAGER_FACTORY_H_

#include <memory>

#include "ui/views/views_export.h"

namespace views {

class FocusManager;
class Widget;

// A factory to create FocusManager. This can be used to inject a custom
// factory.
class VIEWS_EXPORT FocusManagerFactory {};

}  // namespace views

#endif  // UI_VIEWS_FOCUS_FOCUS_MANAGER_FACTORY_H_