Index: components/arc/arc_bridge_service_impl.h |
diff --git a/components/arc/arc_bridge_service_impl.h b/components/arc/arc_bridge_service_impl.h |
index d65e712c538697db9b284f0f32764f819802962c..e01adb8a091c7030d3262a62581151bc974642e6 100644 |
--- a/components/arc/arc_bridge_service_impl.h |
+++ b/components/arc/arc_bridge_service_impl.h |
@@ -38,6 +38,9 @@ class ArcBridgeServiceImpl : public ArcBridgeService, |
const std::string& device_type, |
base::ScopedFD fd) override; |
+ bool SendNotificationEventToAndroid(const std::string& key, |
+ ArcNotificationEvent event) override; |
+ |
private: |
friend class ArcBridgeTest; |
FRIEND_TEST_ALL_PREFIXES(ArcBridgeTest, Basic); |
@@ -69,6 +72,10 @@ class ArcBridgeServiceImpl : public ArcBridgeService, |
// Called when the instance has reached a boot phase |
void OnInstanceBootPhase(InstanceBootPhase phase); |
+ // Handler for ArcInstanceHostMsg_NotificationPosted message. |
+ void OnNotificationPostedFromAndroid(const ArcNotificationData& data); |
+ // Handler for ArcInstanceHostMsg_NotificationRemoved message. |
+ void OnNotificationRemovedFromAndroid(const std::string& key); |
// IPC::Listener: |
bool OnMessageReceived(const IPC::Message& message) override; |