Index: components/arc/test/fake_notifications_instance.cc |
diff --git a/components/arc/test/fake_notifications_instance.cc b/components/arc/test/fake_notifications_instance.cc |
index 3f5bea7b8052eeca0f5ea9dcb58ed511caa2aed3..007ae0b0fe285c34b8cb1bcec1cee42314280c1e 100644 |
--- a/components/arc/test/fake_notifications_instance.cc |
+++ b/components/arc/test/fake_notifications_instance.cc |
@@ -7,20 +7,20 @@ |
namespace arc { |
FakeNotificationsInstance::FakeNotificationsInstance( |
- mojo::InterfaceRequest<NotificationsInstance> request) |
+ mojo::InterfaceRequest<mojom::NotificationsInstance> request) |
: binding_(this, std::move(request)) {} |
FakeNotificationsInstance::~FakeNotificationsInstance() {} |
void FakeNotificationsInstance::SendNotificationEventToAndroid( |
const mojo::String& key, |
- ArcNotificationEvent event) { |
+ mojom::ArcNotificationEvent event) { |
events_.emplace_back(key, event); |
} |
-void FakeNotificationsInstance::Init(NotificationsHostPtr host_ptr) {} |
+void FakeNotificationsInstance::Init(mojom::NotificationsHostPtr host_ptr) {} |
-const std::vector<std::pair<mojo::String, ArcNotificationEvent>>& |
+const std::vector<std::pair<mojo::String, mojom::ArcNotificationEvent>>& |
FakeNotificationsInstance::events() const { |
return events_; |
} |