fake_detailed_view_delegate.cc 519 B

123456789101112131415161718
  1. // Copyright 2022 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 "ash/system/tray/fake_detailed_view_delegate.h"
  5. namespace ash {
  6. FakeDetailedViewDelegate::FakeDetailedViewDelegate()
  7. : DetailedViewDelegate(/*tray_controller=*/nullptr) {}
  8. FakeDetailedViewDelegate::~FakeDetailedViewDelegate() = default;
  9. void FakeDetailedViewDelegate::CloseBubble() {
  10. close_bubble_call_count_++;
  11. }
  12. } // namespace ash