OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // This file contains stub implementations of the functions declared in |
| 6 // browser_dialogs.h that are currently unimplemented in GTK-views. |
| 7 |
| 8 #include "base/logging.h" |
| 9 #include "chrome/browser/views/browser_dialogs.h" |
| 10 |
| 11 namespace browser { |
| 12 |
| 13 void ShowBugReportView(views::Widget* parent, |
| 14 Profile* profile, |
| 15 TabContents* tab) { |
| 16 } |
| 17 |
| 18 void ShowClearBrowsingDataView(views::Widget* parent, |
| 19 Profile* profile) { |
| 20 } |
| 21 |
| 22 void ShowSelectProfileDialog() { |
| 23 } |
| 24 |
| 25 void ShowImporterView(views::Widget* parent, |
| 26 Profile* profile) { |
| 27 } |
| 28 |
| 29 void ShowBookmarkBubbleView(views::Window* parent, |
| 30 const gfx::Rect& bounds, |
| 31 InfoBubbleDelegate* delegate, |
| 32 Profile* profile, |
| 33 const GURL& url, |
| 34 bool newly_bookmarked) { |
| 35 } |
| 36 |
| 37 void HideBookmarkBubbleView() { |
| 38 } |
| 39 |
| 40 bool IsBookmarkBubbleViewShowing() { |
| 41 return false; |
| 42 } |
| 43 |
| 44 void ShowBookmarkManagerView(Profile* profile) { |
| 45 } |
| 46 |
| 47 void ShowAboutChromeView(views::Widget* parent, |
| 48 Profile* profile) { |
| 49 } |
| 50 |
| 51 void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser, |
| 52 HtmlDialogUIDelegate* delegate) { |
| 53 } |
| 54 |
| 55 FindBar* CreateFindBar(BrowserView* browser_view) { |
| 56 NOTIMPLEMENTED(); |
| 57 return NULL; |
| 58 } |
| 59 |
| 60 void ShowPasswordsExceptionsWindowView(Profile* profile) { |
| 61 } |
| 62 |
| 63 void ShowKeywordEditorView(Profile* profile) { |
| 64 } |
| 65 |
| 66 void ShowNewProfileDialog() { |
| 67 } |
| 68 |
| 69 } // namespace browser |
OLD | NEW |