Index: chrome/browser/views/dialog_stubs_gtk.cc |
=================================================================== |
--- chrome/browser/views/dialog_stubs_gtk.cc (revision 0) |
+++ chrome/browser/views/dialog_stubs_gtk.cc (revision 0) |
@@ -0,0 +1,69 @@ |
+// Copyright (c) 2009 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+// This file contains stub implementations of the functions declared in |
+// browser_dialogs.h that are currently unimplemented in GTK-views. |
+ |
+#include "base/logging.h" |
+#include "chrome/browser/views/browser_dialogs.h" |
+ |
+namespace browser { |
+ |
+void ShowBugReportView(views::Widget* parent, |
+ Profile* profile, |
+ TabContents* tab) { |
+} |
+ |
+void ShowClearBrowsingDataView(views::Widget* parent, |
+ Profile* profile) { |
+} |
+ |
+void ShowSelectProfileDialog() { |
+} |
+ |
+void ShowImporterView(views::Widget* parent, |
+ Profile* profile) { |
+} |
+ |
+void ShowBookmarkBubbleView(views::Window* parent, |
+ const gfx::Rect& bounds, |
+ InfoBubbleDelegate* delegate, |
+ Profile* profile, |
+ const GURL& url, |
+ bool newly_bookmarked) { |
+} |
+ |
+void HideBookmarkBubbleView() { |
+} |
+ |
+bool IsBookmarkBubbleViewShowing() { |
+ return false; |
+} |
+ |
+void ShowBookmarkManagerView(Profile* profile) { |
+} |
+ |
+void ShowAboutChromeView(views::Widget* parent, |
+ Profile* profile) { |
+} |
+ |
+void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser, |
+ HtmlDialogUIDelegate* delegate) { |
+} |
+ |
+FindBar* CreateFindBar(BrowserView* browser_view) { |
+ NOTIMPLEMENTED(); |
+ return NULL; |
+} |
+ |
+void ShowPasswordsExceptionsWindowView(Profile* profile) { |
+} |
+ |
+void ShowKeywordEditorView(Profile* profile) { |
+} |
+ |
+void ShowNewProfileDialog() { |
+} |
+ |
+} // namespace browser |