Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Unified Diff: components/arc/test/fake_notifications_instance.cc

Issue 1885683005: Add module suffix in .mojom files for components/arc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase only Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/arc/test/fake_notifications_instance.h ('k') | ui/arc/notification/arc_notification_item.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
}
« no previous file with comments | « components/arc/test/fake_notifications_instance.h ('k') | ui/arc/notification/arc_notification_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698