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

Side by Side 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, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/views/browser_dialogs.h ('k') | chrome/chrome.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« 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