summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/options/advanced_contents_gtk.h
diff options
context:
space:
mode:
authormattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-26 20:40:05 +0000
committermattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-26 20:40:05 +0000
commit4411c21f13e7da66f3c9d394f40c1f10b6d20782 (patch)
tree3b9994e437f2e1312d209ce3dd940198baf9781c /chrome/browser/gtk/options/advanced_contents_gtk.h
parent69256505689d6e1aad04c2ac737972c4549d7113 (diff)
downloadchromium_src-4411c21f13e7da66f3c9d394f40c1f10b6d20782.zip
chromium_src-4411c21f13e7da66f3c9d394f40c1f10b6d20782.tar.gz
chromium_src-4411c21f13e7da66f3c9d394f40c1f10b6d20782.tar.bz2
Add stubs for the rest of the gtk advanced options sections. Hook up the reset prefs function.
BUG=11507 Review URL: http://codereview.chromium.org/149097 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19412 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/gtk/options/advanced_contents_gtk.h')
-rw-r--r--chrome/browser/gtk/options/advanced_contents_gtk.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/chrome/browser/gtk/options/advanced_contents_gtk.h b/chrome/browser/gtk/options/advanced_contents_gtk.h
index 79c9427..befd3c5 100644
--- a/chrome/browser/gtk/options/advanced_contents_gtk.h
+++ b/chrome/browser/gtk/options/advanced_contents_gtk.h
@@ -11,7 +11,11 @@
#include "base/scoped_ptr.h"
class Profile;
+class DownloadSection;
+class NetworkSection;
class PrivacySection;
+class SecuritySection;
+class WebContentSection;
class AdvancedContentsGtk {
public:
@@ -29,7 +33,11 @@ class AdvancedContentsGtk {
Profile* profile_;
// The sections of the page.
+ scoped_ptr<DownloadSection> download_section_;
+ scoped_ptr<NetworkSection> network_section_;
scoped_ptr<PrivacySection> privacy_section_;
+ scoped_ptr<SecuritySection> security_section_;
+ scoped_ptr<WebContentSection> web_content_section_;
// The widget containing the advanced options sections.
GtkWidget* page_;