| 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 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 void ShowSelectProfileDialog() { | 26 void ShowSelectProfileDialog() { |
| 27 NOTIMPLEMENTED(); | 27 NOTIMPLEMENTED(); |
| 28 } | 28 } |
| 29 | 29 |
| 30 void ShowImporterView(views::Widget* parent, | 30 void ShowImporterView(views::Widget* parent, |
| 31 Profile* profile) { | 31 Profile* profile) { |
| 32 NOTIMPLEMENTED(); | 32 NOTIMPLEMENTED(); |
| 33 } | 33 } |
| 34 | 34 |
| 35 void ShowBookmarkBubbleView(views::Window* parent, | |
| 36 const gfx::Rect& bounds, | |
| 37 InfoBubbleDelegate* delegate, | |
| 38 Profile* profile, | |
| 39 const GURL& url, | |
| 40 bool newly_bookmarked) { | |
| 41 NOTIMPLEMENTED(); | |
| 42 } | |
| 43 | |
| 44 void HideBookmarkBubbleView() { | |
| 45 NOTIMPLEMENTED(); | |
| 46 } | |
| 47 | |
| 48 bool IsBookmarkBubbleViewShowing() { | |
| 49 NOTIMPLEMENTED(); | |
| 50 return false; | |
| 51 } | |
| 52 | |
| 53 void ShowBookmarkManagerView(Profile* profile) { | 35 void ShowBookmarkManagerView(Profile* profile) { |
| 54 NOTIMPLEMENTED(); | 36 NOTIMPLEMENTED(); |
| 55 } | 37 } |
| 56 | 38 |
| 57 void ShowAboutChromeView(views::Widget* parent, | 39 void ShowAboutChromeView(views::Widget* parent, |
| 58 Profile* profile) { | 40 Profile* profile) { |
| 59 NOTIMPLEMENTED(); | 41 NOTIMPLEMENTED(); |
| 60 } | 42 } |
| 61 | 43 |
| 62 void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser, | 44 void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser, |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 void ShowOptionsWindow(OptionsPage page, | 79 void ShowOptionsWindow(OptionsPage page, |
| 98 OptionsGroup highlight_group, | 80 OptionsGroup highlight_group, |
| 99 Profile* profile) { | 81 Profile* profile) { |
| 100 NOTIMPLEMENTED(); | 82 NOTIMPLEMENTED(); |
| 101 } | 83 } |
| 102 void ShowFontsLanguagesWindow(gfx::NativeWindow window, | 84 void ShowFontsLanguagesWindow(gfx::NativeWindow window, |
| 103 FontsLanguagesPage page, | 85 FontsLanguagesPage page, |
| 104 Profile* profile) { | 86 Profile* profile) { |
| 105 NOTIMPLEMENTED(); | 87 NOTIMPLEMENTED(); |
| 106 } | 88 } |
| OLD | NEW |