OLD | NEW |
| (Empty) |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_SYSTEM_PAGE_VIEW_H_ | |
6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_SYSTEM_PAGE_VIEW_H_ | |
7 #pragma once | |
8 | |
9 #include "chrome/browser/chromeos/options/settings_page_view.h" | |
10 | |
11 namespace chromeos { | |
12 | |
13 // System settings page for Chrome OS | |
14 class SystemPageView : public SettingsPageView { | |
15 public: | |
16 explicit SystemPageView(Profile* profile) : SettingsPageView(profile) {} | |
17 virtual ~SystemPageView() {} | |
18 | |
19 protected: | |
20 // SettingsPageView implementation: | |
21 virtual void InitControlLayout(); | |
22 | |
23 DISALLOW_COPY_AND_ASSIGN(SystemPageView); | |
24 }; | |
25 | |
26 } // namespace chromeos | |
27 | |
28 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_SYSTEM_PAGE_VIEW_H_ | |
OLD | NEW |