Skip to content
Snippets Groups Projects
Commit c40151ab authored by vitalybuka@chromium.org's avatar vitalybuka@chromium.org
Browse files

Fixed unittests.

BUG=65973
TEST=none


Review URL: http://codereview.chromium.org/5824002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69179 0039d316-1c4b-4281-b951-d872f2087c98
parent 96ce6f6c
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ class TestingBrokerRpcClient : public BrokerRpcClient {
public:
explicit TestingBrokerRpcClient(bool allow_restarts)
: BrokerRpcClient(allow_restarts) {}
MOCK_METHOD1(StartServer, HRESULT(IUnknown**));
MOCK_METHOD1(StartServer, HRESULT(ICeeeBrokerRegistrar**));
};
TEST_F(BrokerRpcTest, StartServer) {
......
......@@ -396,7 +396,7 @@ class MockBrokerRpcClient : public BrokerRpcClient {
public:
explicit MockBrokerRpcClient(bool allow_restart)
: BrokerRpcClient(allow_restart) {}
MOCK_METHOD1(StartServer, HRESULT(IUnknown**));
MOCK_METHOD1(StartServer, HRESULT(ICeeeBrokerRegistrar**));
MOCK_METHOD1(Connect, HRESULT(bool));
MOCK_METHOD0(Disconnect, void());
MOCK_CONST_METHOD0(is_connected, bool());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment