blob: 8075021484d4a52d39685ee1443a6cb922870cd7 (
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
|
// Copyright (c) 2010 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_VIEWS_OPTIONS_ADVANCED_PAGE_VIEW_H_
#define CHROME_BROWSER_VIEWS_OPTIONS_ADVANCED_PAGE_VIEW_H_
#pragma once
#include "chrome/browser/views/options/options_page_view.h"
#include "views/controls/button/button.h"
class AdvancedOptionsListModel;
class AdvancedScrollViewContainer;
class PrefService;
namespace views {
class NativeButton;
}
///////////////////////////////////////////////////////////////////////////////
// AdvancedPageView
class AdvancedPageView : public OptionsPageView,
public views::ButtonListener {
public:
explicit AdvancedPageView(Profile* profile);
virtual ~AdvancedPageView();
// Resets all prefs to their default values.
void ResetToDefaults();
// views::ButtonListener implementation:
virtual void ButtonPressed(views::Button* sender, const views::Event& event);
protected:
// OptionsPageView implementation:
virtual void InitControlLayout();
private:
// Controls for the Advanced page
AdvancedScrollViewContainer* advanced_scroll_view_;
views::NativeButton* reset_to_default_button_;
DISALLOW_COPY_AND_ASSIGN(AdvancedPageView);
};
#endif // CHROME_BROWSER_VIEWS_OPTIONS_ADVANCED_PAGE_VIEW_H_
|