OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_VIEWS_BROWSER_DIALOGS_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_BROWSER_DIALOGS_H_ |
6 #define CHROME_BROWSER_VIEWS_BROWSER_DIALOGS_H_ | 6 #define CHROME_BROWSER_VIEWS_BROWSER_DIALOGS_H_ |
7 | 7 |
8 #include "base/gfx/native_widget_types.h" | 8 #include "base/gfx/native_widget_types.h" |
9 | 9 |
10 // This file contains functions for running a variety of browser dialogs and | 10 // This file contains functions for running a variety of browser dialogs and |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // Shows the "Save passwords and exceptions" dialog. | 75 // Shows the "Save passwords and exceptions" dialog. |
76 // See PasswordsExceptionsWindowView. | 76 // See PasswordsExceptionsWindowView. |
77 void ShowPasswordsExceptionsWindowView(Profile* profile); | 77 void ShowPasswordsExceptionsWindowView(Profile* profile); |
78 | 78 |
79 // Shows the keyword editor. See KeywordEditorView. | 79 // Shows the keyword editor. See KeywordEditorView. |
80 void ShowKeywordEditorView(Profile* profile); | 80 void ShowKeywordEditorView(Profile* profile); |
81 | 81 |
82 // Shows the "new profile" dialog box. See NewProfileDialog. | 82 // Shows the "new profile" dialog box. See NewProfileDialog. |
83 void ShowNewProfileDialog(); | 83 void ShowNewProfileDialog(); |
84 | 84 |
| 85 // Shows the Task Manager. |
| 86 void ShowTaskManager(); |
| 87 |
85 } // namespace browser | 88 } // namespace browser |
86 | 89 |
87 #endif // CHROME_BROWSER_VIEWS_BROWSER_DIALOGS_H_ | 90 #endif // CHROME_BROWSER_VIEWS_BROWSER_DIALOGS_H_ |
OLD | NEW |