Downsides of Google Mock compared to HippoMocks are:
(0) Much more verbose
(1) You have to derive from the class which you want to mock. This means that you need the implementation (not only the interface) of classes you want to mock. In a lot of cases you don't want that in a unit test because the implementation can be platform dependent and you don't have the implementation of that platform (this can be solved using an null implementation for that platform).
(2) The constructor/destructor(if virtual) of your mocked class will be called.
(3) Explicitly make boilerplate code for every not implemented virtual function in the class to mock.