blob: 8bd73c201128038ff893a3503fe7e14021976b97 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_UI_VIEWS_CONFIRM_QUIT_BUBBLE_BASE_H_
#define CHROME_BROWSER_UI_VIEWS_CONFIRM_QUIT_BUBBLE_BASE_H_
// Base class of ConfirmQuitBubble necessary for unit testing
// ConfirmQuitBubbleController.
class ConfirmQuitBubbleBase {
public:
ConfirmQuitBubbleBase() {}
virtual ~ConfirmQuitBubbleBase() {}
virtual void Show() = 0;
virtual void Hide() = 0;
};
#endif // CHROME_BROWSER_UI_VIEWS_CONFIRM_QUIT_BUBBLE_BASE_H_