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

Unified Diff: chrome/browser/gtk/options/content_page_gtk.h

Issue 193033: Linux: expose "Use system title bar and borders" preference in options dialog. (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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/gtk/options/content_page_gtk.h
===================================================================
--- chrome/browser/gtk/options/content_page_gtk.h (revision 25629)
+++ chrome/browser/gtk/options/content_page_gtk.h (working copy)
@@ -49,6 +49,10 @@
static void OnGetThemesButtonClicked(GtkButton* widget,
ContentPageGtk* page);
+ // Callback for system title bar checkbox.
+ static void OnSystemTitleBarCheckboxClicked(GtkButton* widget,
+ ContentPageGtk* page);
+
// Callback for passwords exceptions button.
static void OnPasswordsExceptionsButtonClicked(GtkButton* widget,
ContentPageGtk* page);
@@ -65,16 +69,20 @@
GtkWidget* passwords_asktosave_radio_;
GtkWidget* passwords_neversave_radio_;
- // Widget for the Form Autofill group.
+ // Widgets for the Form Autofill group.
GtkWidget* form_autofill_asktosave_radio_;
GtkWidget* form_autofill_neversave_radio_;
+ // Widgets for the Themes group.
+ GtkWidget* system_title_bar_checkbox_;
+
// The parent GtkTable widget
GtkWidget* page_;
// Pref members.
BooleanPrefMember ask_to_save_passwords_;
BooleanPrefMember ask_to_save_form_autofill_;
+ BooleanPrefMember use_custom_chrome_frame_;
// Flag to ignore gtk callbacks while we are loading prefs, to avoid
// then turning around and saving them again.
« no previous file with comments | « no previous file | chrome/browser/gtk/options/content_page_gtk.cc » ('j') | chrome/browser/gtk/options/content_page_gtk.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698