| Index: chrome/browser/gtk/options/advanced_contents_gtk.h
|
| diff --git a/chrome/browser/gtk/options/advanced_contents_gtk.h b/chrome/browser/gtk/options/advanced_contents_gtk.h
|
| index 79c9427eaafd3e1944f44363e67f9bfe73e22de8..befd3c57ee313f2cce4676d869bf6f5e44390c15 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_;
|
|
|