summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_regular/test/include/policy/mock_access_remote.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/policy/policy_regular/test/include/policy/mock_access_remote.h')
-rw-r--r--src/components/policy/policy_regular/test/include/policy/mock_access_remote.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/components/policy/policy_regular/test/include/policy/mock_access_remote.h b/src/components/policy/policy_regular/test/include/policy/mock_access_remote.h
index c7ad82da40..8dc3e2d3a0 100644
--- a/src/components/policy/policy_regular/test/include/policy/mock_access_remote.h
+++ b/src/components/policy/policy_regular/test/include/policy/mock_access_remote.h
@@ -39,7 +39,7 @@ namespace test {
namespace components {
namespace access_remote_test {
-class MockSubject : public policy::Subject {
+class MockSubject : public policy::ApplicationOnDevice {
public:
};
@@ -47,14 +47,15 @@ class MockAccessRemote : public policy::AccessRemote {
public:
MOCK_CONST_METHOD3(
FindGroup,
- policy::PTString(const policy::Subject& who,
+ policy::PTString(const policy::ApplicationOnDevice& who,
const policy::PTString& rpc,
const policy::RemoteControlParams& params));
MOCK_METHOD2(SetDefaultHmiTypes,
- void(const policy::Subject& who,
+ void(const policy::ApplicationOnDevice& who,
const std::vector<int>& hmi_types));
- MOCK_METHOD1(GetGroups,
- const policy_table::Strings&(const policy::Subject& who));
+ MOCK_METHOD1(
+ GetGroups,
+ const policy_table::Strings&(const policy::ApplicationOnDevice& who));
MOCK_METHOD3(GetPermissionsForApp,
bool(const std::string& device_id,
const std::string& app_id,
@@ -62,7 +63,8 @@ class MockAccessRemote : public policy::AccessRemote {
MOCK_CONST_METHOD2(CheckModuleType,
bool(const policy::PTString& app_id,
policy_table::ModuleType module));
- MOCK_METHOD1(IsAppRemoteControl, bool(const policy::Subject& who));
+ MOCK_METHOD1(IsAppRemoteControl,
+ bool(const policy::ApplicationOnDevice& who));
MOCK_METHOD2(GetModuleTypes,
bool(const std::string& application_id,
std::vector<std::string>* modules));