mock_media_notification_item.cc 612 B

1234567891011121314151617181920
  1. // Copyright 2021 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "components/media_message_center/mock_media_notification_item.h"
  5. namespace media_message_center {
  6. namespace test {
  7. MockMediaNotificationItem::MockMediaNotificationItem() = default;
  8. MockMediaNotificationItem::~MockMediaNotificationItem() = default;
  9. base::WeakPtr<MockMediaNotificationItem>
  10. MockMediaNotificationItem::GetWeakPtr() {
  11. return weak_ptr_factory_.GetWeakPtr();
  12. }
  13. } // namespace test
  14. } // namespace media_message_center