Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3102)

Unified Diff: ash/login/ui/lock_contents_view.cc

Issue 2876673002: mojo api for view based lockscreen (Closed)
Patch Set: Incorporate comments from patch set 8 and rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/login/lock_screen_controller_unittest.cc ('k') | ash/mojo_interface_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/login/ui/lock_contents_view.cc
diff --git a/ash/login/ui/lock_contents_view.cc b/ash/login/ui/lock_contents_view.cc
index c676efb97b06675117c0f5b336b1f2d337ff4d07..ac26b52f6a454ea5d3f7812356b3b48a859781b1 100644
--- a/ash/login/ui/lock_contents_view.cc
+++ b/ash/login/ui/lock_contents_view.cc
@@ -4,6 +4,9 @@
#include "ash/login/ui/lock_contents_view.h"
+#include "ash/login/lock_screen_controller.h"
+#include "ash/session/session_controller.h"
+#include "ash/shell.h"
#include "base/strings/utf_string_conversions.h"
#include "ui/views/background.h"
#include "ui/views/border.h"
@@ -33,8 +36,14 @@ void LockContentsView::ButtonPressed(views::Button* sender,
const ui::Event& event) {
DCHECK(unlock_button_ == sender);
- // TODO: Run mojo call that talks to backend which unlocks the device.
- NOTIMPLEMENTED();
+ // TODO: user index shouldn't be hard coded here. Complete the implementation
+ // below.
+ const int user_index = 0;
+ const mojom::UserSession* const user_session =
+ Shell::Get()->session_controller()->GetUserSession(user_index);
+ Shell::Get()->lock_screen_controller()->AuthenticateUser(
+ user_session->account_id, std::string(),
+ false /* authenticated_by_pin */);
}
} // namespace ash
« no previous file with comments | « ash/login/lock_screen_controller_unittest.cc ('k') | ash/mojo_interface_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698