1 // Copyright 2020 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 
5 #include "ash/system/phonehub/phone_hub_content_view.h"
6 
7 namespace ash {
8 
9 PhoneHubContentView::PhoneHubContentView() = default;
10 PhoneHubContentView::~PhoneHubContentView() = default;
11 
OnBubbleClose()12 void PhoneHubContentView::OnBubbleClose() {
13   // Nothing to do.
14 }
15 
GetScreenForMetrics() const16 phone_hub_metrics::Screen PhoneHubContentView::GetScreenForMetrics() const {
17   return phone_hub_metrics::Screen::kInvalid;
18 }
19 
LogInterstitialScreenEvent(phone_hub_metrics::InterstitialScreenEvent event)20 void PhoneHubContentView::LogInterstitialScreenEvent(
21     phone_hub_metrics::InterstitialScreenEvent event) {
22   phone_hub_metrics::LogInterstitialScreenEvent(GetScreenForMetrics(), event);
23 }
24 
25 }  // namespace ash
26