diff options
Diffstat (limited to 'content/common/notification_observer_mock.h')
-rw-r--r-- | content/common/notification_observer_mock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/common/notification_observer_mock.h b/content/common/notification_observer_mock.h index 6131be1..1c6fa4b 100644 --- a/content/common/notification_observer_mock.h +++ b/content/common/notification_observer_mock.h @@ -6,8 +6,8 @@ #define CONTENT_COMMON_NOTIFICATION_OBSERVER_MOCK_H_ #pragma once +#include "content/common/content_notification_types.h" #include "content/common/notification_observer.h" -#include "content/common/notification_type.h" #include "testing/gmock/include/gmock/gmock.h" class NotificationDetails; @@ -18,7 +18,7 @@ class NotificationObserverMock : public NotificationObserver { NotificationObserverMock(); virtual ~NotificationObserverMock(); - MOCK_METHOD3(Observe, void(NotificationType type, + MOCK_METHOD3(Observe, void(int type, const NotificationSource& source, const NotificationDetails& details)); }; |