Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1083)

Side by Side Diff: chrome/browser/ui/views/modal_dialog_delegate.h

Issue 5869001: Remove unused ModalDialogDelegate class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/views/modal_dialog_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_UI_VIEWS_MODAL_DIALOG_DELEGATE_H_
6 #define CHROME_BROWSER_UI_VIEWS_MODAL_DIALOG_DELEGATE_H_
7 #pragma once
8
9 #include "views/window/dialog_delegate.h"
10
11 namespace views {
12 class Window;
13 }
14
15 class ModalDialogDelegate : public views::DialogDelegate {
16 public:
17 virtual ~ModalDialogDelegate() {}
18 // Methods called from AppModalDialog.
19 virtual gfx::NativeWindow GetDialogRootWindow() = 0;
20 virtual void ShowModalDialog();
21 virtual void ActivateModalDialog();
22 virtual void CloseModalDialog();
23 protected:
24 ModalDialogDelegate();
25
26 // The dialog if it is currently visible.
27 views::Window* dialog_;
28 };
29
30 #endif // CHROME_BROWSER_UI_VIEWS_MODAL_DIALOG_DELEGATE_H_
31
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/views/modal_dialog_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698