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

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

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_arc_bridge_instance.cc ('k') | components/arc/test/fake_notifications_instance.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/test/fake_notifications_instance.h
diff --git a/components/arc/test/fake_notifications_instance.h b/components/arc/test/fake_notifications_instance.h
index fdddc8242738ee7e14ab1980252a74caad6a8f4c..88f68c06d3e38f8e67fe299412057928034b6f21 100644
--- a/components/arc/test/fake_notifications_instance.h
+++ b/components/arc/test/fake_notifications_instance.h
@@ -10,26 +10,27 @@
namespace arc {
-class FakeNotificationsInstance : public NotificationsInstance {
+class FakeNotificationsInstance : public mojom::NotificationsInstance {
public:
FakeNotificationsInstance(
- mojo::InterfaceRequest<NotificationsInstance> request);
+ mojo::InterfaceRequest<mojom::NotificationsInstance> request);
~FakeNotificationsInstance() override;
- void Init(NotificationsHostPtr host_ptr) override;
+ void Init(mojom::NotificationsHostPtr host_ptr) override;
- void SendNotificationEventToAndroid(const mojo::String& key,
- ArcNotificationEvent event) override;
+ void SendNotificationEventToAndroid(
+ const mojo::String& key,
+ mojom::ArcNotificationEvent event) override;
- const std::vector<std::pair<mojo::String, ArcNotificationEvent>>& events()
- const;
+ const std::vector<std::pair<mojo::String, mojom::ArcNotificationEvent>>&
+ events() const;
void WaitForIncomingMethodCall();
private:
- std::vector<std::pair<mojo::String, ArcNotificationEvent>> events_;
+ std::vector<std::pair<mojo::String, mojom::ArcNotificationEvent>> events_;
- mojo::Binding<NotificationsInstance> binding_;
+ mojo::Binding<mojom::NotificationsInstance> binding_;
DISALLOW_COPY_AND_ASSIGN(FakeNotificationsInstance);
};
« no previous file with comments | « components/arc/test/fake_arc_bridge_instance.cc ('k') | components/arc/test/fake_notifications_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698