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_UI_WEBUI_OPTIONS_CHROMEOS_ABOUT_PAGE_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_ABOUT_PAGE_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_ABOUT_PAGE_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_ABOUT_PAGE_HANDLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "chrome/browser/ui/webui/options/options_ui.h" | 10 #include "chrome/browser/ui/webui/options/options_ui.h" |
11 | 11 |
12 #include "chrome/browser/ui/webui/options/chromeos/cros_options_page_ui_handler. h" | 12 #include "chrome/browser/ui/webui/options/options_ui.h" |
Mattias Nissler (ping if slow)
2011/09/21 11:12:59
including the same thing twice just to be sure?
pastarmovj
2011/09/23 15:19:32
Done.
| |
13 #include "chrome/browser/chromeos/cros/update_library.h" | 13 #include "chrome/browser/chromeos/cros/update_library.h" |
14 #include "chrome/browser/chromeos/version_loader.h" | 14 #include "chrome/browser/chromeos/version_loader.h" |
15 | 15 |
16 namespace chromeos { | 16 namespace chromeos { |
17 | 17 |
18 // ChromeOS about page UI handler. | 18 // ChromeOS about page UI handler. |
19 class AboutPageHandler : public CrosOptionsPageUIHandler { | 19 class AboutPageHandler : public OptionsPageUIHandler { |
20 | 20 |
21 public: | 21 public: |
22 AboutPageHandler(); | 22 AboutPageHandler(); |
23 virtual ~AboutPageHandler(); | 23 virtual ~AboutPageHandler(); |
24 | 24 |
25 // OptionsPageUIHandler implementation. | 25 // OptionsPageUIHandler implementation. |
26 virtual void GetLocalizedValues(base::DictionaryValue* localized_strings); | 26 virtual void GetLocalizedValues(base::DictionaryValue* localized_strings); |
27 virtual void RegisterMessages(); | 27 virtual void RegisterMessages(); |
28 | 28 |
29 private: | 29 private: |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
63 int progress_; | 63 int progress_; |
64 bool sticky_; | 64 bool sticky_; |
65 bool started_; | 65 bool started_; |
66 | 66 |
67 DISALLOW_COPY_AND_ASSIGN(AboutPageHandler); | 67 DISALLOW_COPY_AND_ASSIGN(AboutPageHandler); |
68 }; | 68 }; |
69 | 69 |
70 } // namespace chromeos | 70 } // namespace chromeos |
71 | 71 |
72 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_ABOUT_PAGE_HANDLER_H_ | 72 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS_CHROMEOS_ABOUT_PAGE_HANDLER_H_ |
OLD | NEW |