summaryrefslogtreecommitdiff
path: root/src/components/include/test/application_manager/policies/mock_policy_handler_interface.h
diff options
context:
space:
mode:
authorAlex Kutsan <akutsan@luxoft.com>2017-01-12 13:24:28 +0200
committerAlex Kutsan <akutsan@luxoft.com>2017-01-13 10:00:45 +0200
commitb0860333448a1d8a11937dcd4eab459848beb54e (patch)
treed9923c163d1faee1b789290e161a9d665ee11d0d /src/components/include/test/application_manager/policies/mock_policy_handler_interface.h
parentc5e69c4f3bb3fab43bf5d9d2303a39858b60e7fc (diff)
downloadsdl_core-b0860333448a1d8a11937dcd4eab459848beb54e.tar.gz
Use secconds against ms in RPCs
Related issue : APPLINK-31433
Diffstat (limited to 'src/components/include/test/application_manager/policies/mock_policy_handler_interface.h')
-rw-r--r--src/components/include/test/application_manager/policies/mock_policy_handler_interface.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/include/test/application_manager/policies/mock_policy_handler_interface.h b/src/components/include/test/application_manager/policies/mock_policy_handler_interface.h
index dbd7e213e4..509ca05056 100644
--- a/src/components/include/test/application_manager/policies/mock_policy_handler_interface.h
+++ b/src/components/include/test/application_manager/policies/mock_policy_handler_interface.h
@@ -68,7 +68,7 @@ class MockPolicyHandlerInterface : public policy::PolicyHandlerInterface {
MOCK_METHOD3(OnSnapshotCreated,
void(const policy::BinaryMessage& pt_string,
const std::vector<int>& retry_delay_seconds,
- int timeout_exchange));
+ uint32_t timeout_exchange));
#else // EXTERNAL_PROPRIETARY_MODE
MOCK_METHOD1(OnSnapshotCreated, void(const policy::BinaryMessage& pt_string));
#endif // EXTERNAL_PROPRIETARY_MODE
@@ -104,7 +104,8 @@ class MockPolicyHandlerInterface : public policy::PolicyHandlerInterface {
MOCK_CONST_METHOD0(GetLockScreenIconUrl, std::string());
MOCK_METHOD0(ResetRetrySequence, void());
MOCK_METHOD0(NextRetryTimeout, uint32_t());
- MOCK_METHOD0(TimeoutExchange, int());
+ MOCK_METHOD0(TimeoutExchangeSec, uint32_t());
+ MOCK_METHOD0(TimeoutExchangeMSec, uint32_t());
MOCK_METHOD0(OnExceededTimeout, void());
MOCK_METHOD0(OnSystemReady, void());
MOCK_METHOD2(PTUpdatedAt, void(policy::Counters counter, int value));