| 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/fonts_languages_window.h" | 9 #include "chrome/browser/fonts_languages_window.h" |
| 10 #include "chrome/browser/options_window.h" | 10 #include "chrome/browser/options_window.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 void ShowAboutChromeView(views::Widget* parent, | 39 void ShowAboutChromeView(views::Widget* parent, |
| 40 Profile* profile) { | 40 Profile* profile) { |
| 41 NOTIMPLEMENTED(); | 41 NOTIMPLEMENTED(); |
| 42 } | 42 } |
| 43 | 43 |
| 44 void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser, | 44 void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser, |
| 45 HtmlDialogUIDelegate* delegate) { | 45 HtmlDialogUIDelegate* delegate) { |
| 46 NOTIMPLEMENTED(); | 46 NOTIMPLEMENTED(); |
| 47 } | 47 } |
| 48 | 48 |
| 49 FindBar* CreateFindBar(BrowserView* browser_view) { | |
| 50 NOTIMPLEMENTED(); | |
| 51 return NULL; | |
| 52 } | |
| 53 | |
| 54 void ShowPasswordsExceptionsWindowView(Profile* profile) { | 49 void ShowPasswordsExceptionsWindowView(Profile* profile) { |
| 55 NOTIMPLEMENTED(); | 50 NOTIMPLEMENTED(); |
| 56 } | 51 } |
| 57 | 52 |
| 58 void ShowKeywordEditorView(Profile* profile) { | 53 void ShowKeywordEditorView(Profile* profile) { |
| 59 NOTIMPLEMENTED(); | 54 NOTIMPLEMENTED(); |
| 60 } | 55 } |
| 61 | 56 |
| 62 void ShowNewProfileDialog() { | 57 void ShowNewProfileDialog() { |
| 63 NOTIMPLEMENTED(); | 58 NOTIMPLEMENTED(); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 84 void ShowOptionsWindow(OptionsPage page, | 79 void ShowOptionsWindow(OptionsPage page, |
| 85 OptionsGroup highlight_group, | 80 OptionsGroup highlight_group, |
| 86 Profile* profile) { | 81 Profile* profile) { |
| 87 NOTIMPLEMENTED(); | 82 NOTIMPLEMENTED(); |
| 88 } | 83 } |
| 89 void ShowFontsLanguagesWindow(gfx::NativeWindow window, | 84 void ShowFontsLanguagesWindow(gfx::NativeWindow window, |
| 90 FontsLanguagesPage page, | 85 FontsLanguagesPage page, |
| 91 Profile* profile) { | 86 Profile* profile) { |
| 92 NOTIMPLEMENTED(); | 87 NOTIMPLEMENTED(); |
| 93 } | 88 } |
| OLD | NEW |