| Index: components/user_manager/user_info.h
|
| diff --git a/ash/session/user_info.h b/components/user_manager/user_info.h
|
| similarity index 78%
|
| rename from ash/session/user_info.h
|
| rename to components/user_manager/user_info.h
|
| index 59a4cf489b612f0f71667e03e4296a9c7df7de9a..e0ebec243820f5601a977109afd111f4d4c0e8d4 100644
|
| --- a/ash/session/user_info.h
|
| +++ b/components/user_manager/user_info.h
|
| @@ -2,22 +2,22 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef ASH_SESSION_USER_INFO_H_
|
| -#define ASH_SESSION_USER_INFO_H_
|
| +#ifndef COMPONENTS_USER_MANAGER_USER_INFO_H_
|
| +#define COMPONENTS_USER_MANAGER_USER_INFO_H_
|
|
|
| #include <string>
|
|
|
| -#include "ash/ash_export.h"
|
| #include "base/strings/string16.h"
|
| +#include "components/user_manager/user_manager_export.h"
|
|
|
| namespace gfx {
|
| class ImageSkia;
|
| }
|
|
|
| -namespace ash {
|
| +namespace user_manager {
|
|
|
| // A class that represents user related info.
|
| -class ASH_EXPORT UserInfo {
|
| +class USER_MANAGER_EXPORT UserInfo {
|
| public:
|
| virtual ~UserInfo() {}
|
|
|
| @@ -40,6 +40,6 @@ class ASH_EXPORT UserInfo {
|
| virtual const gfx::ImageSkia& GetImage() const = 0;
|
| };
|
|
|
| -} // namespace ash
|
| +} // namespace user_manager
|
|
|
| -#endif // ASH_SESSION_USER_INFO_H_
|
| +#endif // COMPONENTS_USER_MANAGER_USER_INFO_H_
|
|
|