Chromium Code Reviews| Index: ash/login/views/lock_screen.h |
| diff --git a/ash/login/views/lock_screen.h b/ash/login/views/lock_screen.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..9684b5c0c4f32d1fa69d23ac000957245ba23c4d |
| --- /dev/null |
| +++ b/ash/login/views/lock_screen.h |
| @@ -0,0 +1,23 @@ |
| +// Copyright 2017 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef ASH_LOGIN_VIEWS_LOCK_SCREEN_H_ |
| +#define ASH_LOGIN_VIEWS_LOCK_SCREEN_H_ |
| + |
| +#include "ash/ash_export.h" |
| + |
| +namespace views { |
| +class Widget; |
| +} |
| + |
| +namespace ash { |
| + |
| +// Fills the given widget with the lock screen view and displays it. |
| +// |
| +// The lock screen communicates with the backend C++ via a mojo API. |
| +ASH_EXPORT void ShowLockScreenInWidget(views::Widget* widget); |
| + |
| +} // ash |
|
James Cook
2017/05/08 22:04:20
namespace ash
jdufault
2017/05/08 23:02:34
Done.
|
| + |
| +#endif // ASH_LOGIN_VIEWS_LOCK_SCREEN_H_ |