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

Side by Side Diff: chrome/browser/views/dialog_stubs_gtk.cc

Issue 177026: Make the views bookmark bubble work on GTK.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698