Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(423)

Unified Diff: chrome/browser/views/dialog_stubs_gtk.cc

Issue 115824: Add stubs for a variety of dialogs under GTK-Views. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/views/browser_dialogs.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « chrome/browser/views/browser_dialogs.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698