| OLD | NEW |
| 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/dbus/session_manager_client.h" | 10 #include "chromeos/dbus/session_manager_client.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 const StorePolicyCallback&)); | 44 const StorePolicyCallback&)); |
| 45 MOCK_METHOD4(StorePolicyForUser, | 45 MOCK_METHOD4(StorePolicyForUser, |
| 46 void(const std::string&, | 46 void(const std::string&, |
| 47 const std::string&, | 47 const std::string&, |
| 48 const std::string&, | 48 const std::string&, |
| 49 const StorePolicyCallback&)); | 49 const StorePolicyCallback&)); |
| 50 MOCK_METHOD3(StoreDeviceLocalAccountPolicy, | 50 MOCK_METHOD3(StoreDeviceLocalAccountPolicy, |
| 51 void(const std::string&, | 51 void(const std::string&, |
| 52 const std::string&, | 52 const std::string&, |
| 53 const StorePolicyCallback&)); | 53 const StorePolicyCallback&)); |
| 54 MOCK_METHOD2(SetFlagsForUser, |
| 55 void(const std::string&, |
| 56 const std::vector<std::string>&)); |
| 54 }; | 57 }; |
| 55 | 58 |
| 56 } // namespace chromeos | 59 } // namespace chromeos |
| 57 | 60 |
| 58 #endif // CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_ | 61 #endif // CHROMEOS_DBUS_MOCK_SESSION_MANAGER_CLIENT_H_ |
| OLD | NEW |