Chromium Code Reviews| Index: ash/login/views/lock_window.h |
| diff --git a/chrome/browser/chromeos/login/ui/lock_window.h b/ash/login/views/lock_window.h |
| similarity index 68% |
| rename from chrome/browser/chromeos/login/ui/lock_window.h |
| rename to ash/login/views/lock_window.h |
| index 9cc43560ea5763737a4c7a9d2b109712e6b34e98..f5a560d6ee1352607e766dc0e3a792b6f2d562fa 100644 |
| --- a/chrome/browser/chromeos/login/ui/lock_window.h |
| +++ b/ash/login/views/lock_window.h |
| @@ -2,9 +2,10 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOCK_WINDOW_H_ |
| -#define CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOCK_WINDOW_H_ |
| +#ifndef ASH_LOGIN_VIEWS_LOCK_WINDOW_H_ |
|
James Cook
2017/05/09 20:01:56
If you're going to move this file I would prefer t
|
| +#define ASH_LOGIN_VIEWS_LOCK_WINDOW_H_ |
| +#include "ash/ash_export.h" |
| #include "base/macros.h" |
| #include "ui/views/widget/widget.h" |
| #include "ui/views/widget/widget_delegate.h" |
| @@ -14,10 +15,11 @@ class View; |
| class Widget; |
| } |
| -namespace chromeos { |
| +namespace ash { |
| // Shows the widget for the lock screen. |
| -class LockWindow : public views::Widget, public views::WidgetDelegate { |
| +class ASH_EXPORT LockWindow : public views::Widget, |
| + public views::WidgetDelegate { |
| public: |
| LockWindow(); |
| ~LockWindow() override; |
| @@ -31,6 +33,6 @@ class LockWindow : public views::Widget, public views::WidgetDelegate { |
| DISALLOW_COPY_AND_ASSIGN(LockWindow); |
| }; |
| -} // namespace chromeos |
| +} // namespace ash |
| -#endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_LOCK_WINDOW_H_ |
| +#endif // ASH_LOGIN_VIEWS_LOCK_WINDOW_H_ |