OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "ash/login/ui/lock_contents_view.h" | |
6 #include "ash/login/ui/lock_screen.h" | |
7 #include "ash/login/ui/lock_screen_test.h" | |
8 | |
9 namespace ash { | |
10 | |
11 TEST_F(LockScreenTest, Show) { | |
12 widget_->SetContentsView(new LockContentsView()); | |
13 widget_->Show(); | |
14 } | |
15 | |
16 } // namespace ash | |
OLD | NEW |