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 // This file contains stub implementations of the functions declared in | 5 // This file contains stub implementations of the functions declared in |
6 // browser_dialogs.h that are currently unimplemented in GTK-views. | 6 // browser_dialogs.h that are currently unimplemented in GTK-views. |
7 | 7 |
8 #include "base/logging.h" | 8 #include "base/logging.h" |
9 #include "chrome/browser/views/browser_dialogs.h" | 9 #include "chrome/browser/views/browser_dialogs.h" |
10 | 10 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 } | 72 } |
73 | 73 |
74 void ShowKeywordEditorView(Profile* profile) { | 74 void ShowKeywordEditorView(Profile* profile) { |
75 NOTIMPLEMENTED(); | 75 NOTIMPLEMENTED(); |
76 } | 76 } |
77 | 77 |
78 void ShowNewProfileDialog() { | 78 void ShowNewProfileDialog() { |
79 NOTIMPLEMENTED(); | 79 NOTIMPLEMENTED(); |
80 } | 80 } |
81 | 81 |
| 82 void ShowTaskManager() { |
| 83 NOTIMPLEMENTED(); |
| 84 } |
| 85 |
| 86 void EditSearchEngine(gfx::NativeWindow parent, |
| 87 const TemplateURL* template_url, |
| 88 EditSearchEngineControllerDelegate* delegate, |
| 89 Profile* profile) { |
| 90 NOTIMPLEMENTED(); |
| 91 } |
| 92 |
82 } // namespace browser | 93 } // namespace browser |
OLD | NEW |