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

Side by Side Diff: ash/login/mock_lock_screen_client.h

Issue 2896093003: cros: Make sure views-based lock screen is destroyed after it is dismissed. (Closed)
Patch Set: Add new mojo calls Created 3 years, 6 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 2017 The Chromium Authors. All rights reserved. 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 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 ASH_LOGIN_MOCK_LOCK_SCREEN_CLIENT_H_ 5 #ifndef ASH_LOGIN_MOCK_LOCK_SCREEN_CLIENT_H_
6 #define ASH_LOGIN_MOCK_LOCK_SCREEN_CLIENT_H_ 6 #define ASH_LOGIN_MOCK_LOCK_SCREEN_CLIENT_H_
7 7
8 #include "ash/public/interfaces/lock_screen.mojom.h" 8 #include "ash/public/interfaces/lock_screen.mojom.h"
9 #include "mojo/public/cpp/bindings/binding_set.h" 9 #include "mojo/public/cpp/bindings/binding_set.h"
10 #include "testing/gmock/include/gmock/gmock.h" 10 #include "testing/gmock/include/gmock/gmock.h"
11 11
12 namespace ash { 12 namespace ash {
13 13
14 class MockLockScreenClient : public mojom::LockScreenClient { 14 class MockLockScreenClient : public mojom::LockScreenClient {
15 public: 15 public:
16 MockLockScreenClient(); 16 MockLockScreenClient();
17 ~MockLockScreenClient() override; 17 ~MockLockScreenClient() override;
18 18
19 mojom::LockScreenClientPtr CreateInterfacePtrAndBind(); 19 mojom::LockScreenClientPtr CreateInterfacePtrAndBind();
20 20
21 // Result that should be passed to |callback| in |AuthenticateUser|.
22 bool authenticate_user_callback_result = true;
xiyuan 2017/06/06 22:37:51 move this to private and add a setter instead.
jdufault 2017/06/07 18:58:35 Done.
23
21 // mojom::LockScreenClient: 24 // mojom::LockScreenClient:
22 MOCK_METHOD3(AuthenticateUser, 25 void AuthenticateUser(const AccountId& account_id,
26 const std::string& password,
27 bool authenticated_by_pin,
28 AuthenticateUserCallback callback) override;
29 MOCK_METHOD4(AuthenticateUser_,
23 void(const AccountId& account_id, 30 void(const AccountId& account_id,
24 const std::string& password, 31 const std::string& password,
25 bool authenticated_by_pin)); 32 bool authenticated_by_pin,
33 AuthenticateUserCallback& callback));
26 34
27 private: 35 private:
28 mojo::Binding<ash::mojom::LockScreenClient> binding_; 36 mojo::Binding<ash::mojom::LockScreenClient> binding_;
29 37
30 DISALLOW_COPY_AND_ASSIGN(MockLockScreenClient); 38 DISALLOW_COPY_AND_ASSIGN(MockLockScreenClient);
31 }; 39 };
32 40
33 // Helper method to bind a lock screen client so it receives all mojo calls. 41 // Helper method to bind a lock screen client so it receives all mojo calls.
34 std::unique_ptr<MockLockScreenClient> BindMockLockScreenClient(); 42 std::unique_ptr<MockLockScreenClient> BindMockLockScreenClient();
35 43
36 } // namespace ash 44 } // namespace ash
37 45
38 #endif // ASH_LOGIN_MOCK_LOCK_SCREEN_CLIENT_H_ 46 #endif // ASH_LOGIN_MOCK_LOCK_SCREEN_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698