blob: 8dff4e541fcb205430c9471c80502a44a898884f (
plain)
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
|
// Copyright (c) 2006-2008 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_VIEWS_APP_MODAL_DIALOG_DELEGATE_H__
#define CHROME_VIEWS_APP_MODAL_DIALOG_DELEGATE_H__
#include "chrome/views/dialog_delegate.h"
namespace ChromeViews {
// Pure virtual interface for a window which is app modal.
class AppModalDialogDelegate : public DialogDelegate {
public:
// Called by the app modal window queue when it is time to show this window.
virtual void ShowModalDialog() = 0;
// Called by the app modal window queue to activate the window.
virtual void ActivateModalDialog() = 0;
};
} // namespace ChromeViews
#endif // #ifndef CHROME_VIEWS_APP_MODAL_DIALOG_DELEGATE_H__
|