summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/options/internet_page_view.h
blob: 43109ad64ce0d1ff4d6ae9d2761b18e0cbd06d55 (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
// Copyright (c) 2006-2008 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_CHROMEOS_OPTIONS_INTERNET_PAGE_VIEW_H_
#define CHROME_BROWSER_CHROMEOS_OPTIONS_INTERNET_PAGE_VIEW_H_

#include "chrome/browser/chromeos/options/settings_page_view.h"

namespace chromeos {

// Internet settings page for Chrome OS
class InternetPageView : public SettingsPageView {
 public:
  explicit InternetPageView(Profile* profile) : SettingsPageView(profile) {}
  virtual ~InternetPageView() {}

 protected:
  // SettingsPageView implementation:
  virtual void InitControlLayout();

  DISALLOW_COPY_AND_ASSIGN(InternetPageView);
};

}  // namespace chromeos

#endif  // CHROME_BROWSER_CHROMEOS_OPTIONS_INTERNET_PAGE_VIEW_H_