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