blob: 40a04b6228caf3f708b3c33f09a2648ebe0eca62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_GTK_OPTIONS_ADVANCED_CONTENTS_GTK_H_
#define CHROME_BROWSER_GTK_OPTIONS_ADVANCED_CONTENTS_GTK_H_
#include <gtk/gtk.h>
#include "base/basictypes.h"
#include "base/scoped_ptr.h"
class Profile;
class DownloadSection;
class NetworkSection;
class PrivacySection;
class SecuritySection;
class TranslateSection;
class WebContentSection;
class AdvancedContentsGtk {
public:
explicit AdvancedContentsGtk(Profile* profile);
virtual ~AdvancedContentsGtk();
GtkWidget* get_page_widget() const {
return page_;
}
private:
void Init();
// The profile.
Profile* profile_;
// The sections of the page.
scoped_ptr<DownloadSection> download_section_;
scoped_ptr<NetworkSection> network_section_;
scoped_ptr<TranslateSection> translate_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_;
DISALLOW_COPY_AND_ASSIGN(AdvancedContentsGtk);
};
#endif // CHROME_BROWSER_GTK_OPTIONS_ADVANCED_CONTENTS_GTK_H_
|