OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_OPTIONS_SETTINGS_PAGE_VIEW_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_OPTIONS_SETTINGS_PAGE_VIEW_H_ |
6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_SETTINGS_PAGE_VIEW_H_ | 6 #define CHROME_BROWSER_CHROMEOS_OPTIONS_SETTINGS_PAGE_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 | 10 |
| 11 #include "base/basictypes.h" |
11 #include "chrome/browser/ui/views/options/options_page_view.h" | 12 #include "chrome/browser/ui/views/options/options_page_view.h" |
12 | |
13 #include "views/grid_layout.h" | 13 #include "views/grid_layout.h" |
14 #include "views/standard_layout.h" | |
15 | 14 |
16 using views::ColumnSet; | 15 using views::ColumnSet; |
17 using views::GridLayout; | 16 using views::GridLayout; |
18 | 17 |
19 namespace chromeos { | 18 namespace chromeos { |
20 | 19 |
21 class SettingsContentsView; | 20 class SettingsContentsView; |
22 | 21 |
23 // Settings page for Chrome OS. | 22 // Settings page for Chrome OS. |
24 class SettingsPageView : public OptionsPageView { | 23 class SettingsPageView : public OptionsPageView { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 55 |
57 int single_column_view_set_id_; | 56 int single_column_view_set_id_; |
58 int double_column_view_set_id_; | 57 int double_column_view_set_id_; |
59 | 58 |
60 DISALLOW_COPY_AND_ASSIGN(SettingsPageSection); | 59 DISALLOW_COPY_AND_ASSIGN(SettingsPageSection); |
61 }; | 60 }; |
62 | 61 |
63 } // namespace chromeos | 62 } // namespace chromeos |
64 | 63 |
65 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_SETTINGS_PAGE_VIEW_H_ | 64 #endif // CHROME_BROWSER_CHROMEOS_OPTIONS_SETTINGS_PAGE_VIEW_H_ |
OLD | NEW |