1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29

ash / assistant / assistant_web_view_delegate_impl.h [blame]

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_ASSISTANT_ASSISTANT_WEB_VIEW_DELEGATE_IMPL_H_
#define ASH_ASSISTANT_ASSISTANT_WEB_VIEW_DELEGATE_IMPL_H_

#include "ash/assistant/ui/assistant_web_view_delegate.h"

namespace ash {

class AssistantWebViewDelegateImpl : public AssistantWebViewDelegate {
 public:
  AssistantWebViewDelegateImpl();

  AssistantWebViewDelegateImpl(const AssistantWebViewDelegateImpl&) = delete;
  AssistantWebViewDelegateImpl& operator=(const AssistantWebViewDelegateImpl&) =
      delete;

  ~AssistantWebViewDelegateImpl() override;

  // AssistantWebViewDelegate:
  void UpdateBackButtonVisibility(views::Widget* widget,
                                  bool visibility) override;
};

}  // namespace ash

#endif  // ASH_ASSISTANT_ASSISTANT_WEB_VIEW_DELEGATE_IMPL_H_