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

Side by Side Diff: chromeos/dbus/mock_session_manager_client.h

Issue 2023803003: arc: Send cryptohome ID on starting ARC instance. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: s/GetActiveUser/GetPrimaryUser/g Created 4 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
« no previous file with comments | « chromeos/dbus/fake_session_manager_client.cc ('k') | chromeos/dbus/session_manager_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_ 5 #ifndef CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_
6 #define CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_ 6 #define CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "chromeos/cryptohome/cryptohome_parameters.h" 10 #include "chromeos/cryptohome/cryptohome_parameters.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 const StorePolicyCallback&)); 53 const StorePolicyCallback&));
54 MOCK_METHOD3(StoreDeviceLocalAccountPolicy, 54 MOCK_METHOD3(StoreDeviceLocalAccountPolicy,
55 void(const std::string&, 55 void(const std::string&,
56 const std::string&, 56 const std::string&,
57 const StorePolicyCallback&)); 57 const StorePolicyCallback&));
58 MOCK_METHOD2(SetFlagsForUser, 58 MOCK_METHOD2(SetFlagsForUser,
59 void(const cryptohome::Identification&, 59 void(const cryptohome::Identification&,
60 const std::vector<std::string>&)); 60 const std::vector<std::string>&));
61 MOCK_METHOD1(GetServerBackedStateKeys, void(const StateKeysCallback&)); 61 MOCK_METHOD1(GetServerBackedStateKeys, void(const StateKeysCallback&));
62 MOCK_METHOD1(CheckArcAvailability, void(const ArcCallback&)); 62 MOCK_METHOD1(CheckArcAvailability, void(const ArcCallback&));
63 MOCK_METHOD2(StartArcInstance, void(const std::string&, const ArcCallback&)); 63 MOCK_METHOD2(StartArcInstance,
64 void(const cryptohome::Identification&, const ArcCallback&));
64 MOCK_METHOD1(StopArcInstance, void(const ArcCallback&)); 65 MOCK_METHOD1(StopArcInstance, void(const ArcCallback&));
65 MOCK_METHOD1(GetArcStartTime, void(const GetArcStartTimeCallback&)); 66 MOCK_METHOD1(GetArcStartTime, void(const GetArcStartTimeCallback&));
66 }; 67 };
67 68
68 } // namespace chromeos 69 } // namespace chromeos
69 70
70 #endif // CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_ 71 #endif // CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_
OLDNEW
« no previous file with comments | « chromeos/dbus/fake_session_manager_client.cc ('k') | chromeos/dbus/session_manager_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698