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

Side by Side Diff: chrome/browser/chromeos/login/ui/views/user_board_view.h

Issue 1096293003: Move screenlock_bridge to components/proximity_auth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix linux build Created 5 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "chrome/browser/signin/screenlock_bridge.h" 13 #include "components/signin/content/screenlock_bridge.h"
14 14
15 namespace chromeos { 15 namespace chromeos {
16 16
17 class UserBoardModel; 17 class UserBoardModel;
18 18
19 // Interface between user board screen and its representation, either WebUI 19 // Interface between user board screen and its representation, either WebUI
20 // or Views one. 20 // or Views one.
21 class UserBoardView { 21 class UserBoardView {
22 public: 22 public:
23 virtual ~UserBoardView() {} 23 virtual ~UserBoardView() {}
(...skipping 12 matching lines...) Expand all
36 const base::DictionaryValue& icon) = 0; 36 const base::DictionaryValue& icon) = 0;
37 virtual void HideUserPodCustomIcon(const std::string& user_id) = 0; 37 virtual void HideUserPodCustomIcon(const std::string& user_id) = 0;
38 virtual void SetAuthType(const std::string& user_id, 38 virtual void SetAuthType(const std::string& user_id,
39 ScreenlockBridge::LockHandler::AuthType auth_type, 39 ScreenlockBridge::LockHandler::AuthType auth_type,
40 const base::string16& initial_value) = 0; 40 const base::string16& initial_value) = 0;
41 }; 41 };
42 42
43 } // namespace chromeos 43 } // namespace chromeos
44 44
45 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_ 45 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_UI_VIEWS_USER_BOARD_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698