// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chromeos/ash/components/phonehub/notification_interaction_handler_impl.h"
#include "base/logging.h"
#include "chromeos/ash/components/phonehub/notification.h"
namespace ash {
namespace phonehub {
NotificationInteractionHandlerImpl::NotificationInteractionHandlerImpl() {}
NotificationInteractionHandlerImpl::~NotificationInteractionHandlerImpl() =
default;
void NotificationInteractionHandlerImpl::HandleNotificationClicked(
int64_t notification_id,
const Notification::AppMetadata& app_metadata) {
NotifyNotificationClicked(notification_id, app_metadata);
}
} // namespace phonehub
} // namespace ash