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

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

Issue 199025: Fix some gcc 4.4 issues when compiling with toolkit_views. (Closed)
Patch Set: Remove CreateFindBar, use COMPILER_GCC and add comments. 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
« no previous file with comments | « app/os_exchange_data_provider_gtk.cc ('k') | chrome/browser/views/tabs/tab_strip.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 28 matching lines...) Expand all
39 void ShowAboutChromeView(views::Widget* parent, 39 void ShowAboutChromeView(views::Widget* parent,
40 Profile* profile) { 40 Profile* profile) {
41 NOTIMPLEMENTED(); 41 NOTIMPLEMENTED();
42 } 42 }
43 43
44 void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser, 44 void ShowHtmlDialogView(gfx::NativeWindow parent, Browser* browser,
45 HtmlDialogUIDelegate* delegate) { 45 HtmlDialogUIDelegate* delegate) {
46 NOTIMPLEMENTED(); 46 NOTIMPLEMENTED();
47 } 47 }
48 48
49 FindBar* CreateFindBar(BrowserView* browser_view) {
50 NOTIMPLEMENTED();
51 return NULL;
52 }
53
54 void ShowPasswordsExceptionsWindowView(Profile* profile) { 49 void ShowPasswordsExceptionsWindowView(Profile* profile) {
55 NOTIMPLEMENTED(); 50 NOTIMPLEMENTED();
56 } 51 }
57 52
58 void ShowKeywordEditorView(Profile* profile) { 53 void ShowKeywordEditorView(Profile* profile) {
59 NOTIMPLEMENTED(); 54 NOTIMPLEMENTED();
60 } 55 }
61 56
62 void ShowNewProfileDialog() { 57 void ShowNewProfileDialog() {
63 NOTIMPLEMENTED(); 58 NOTIMPLEMENTED();
(...skipping 20 matching lines...) Expand all
84 void ShowOptionsWindow(OptionsPage page, 79 void ShowOptionsWindow(OptionsPage page,
85 OptionsGroup highlight_group, 80 OptionsGroup highlight_group,
86 Profile* profile) { 81 Profile* profile) {
87 NOTIMPLEMENTED(); 82 NOTIMPLEMENTED();
88 } 83 }
89 void ShowFontsLanguagesWindow(gfx::NativeWindow window, 84 void ShowFontsLanguagesWindow(gfx::NativeWindow window,
90 FontsLanguagesPage page, 85 FontsLanguagesPage page,
91 Profile* profile) { 86 Profile* profile) {
92 NOTIMPLEMENTED(); 87 NOTIMPLEMENTED();
93 } 88 }
OLDNEW
« no previous file with comments | « app/os_exchange_data_provider_gtk.cc ('k') | chrome/browser/views/tabs/tab_strip.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698