OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2012 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_UI_WEBUI_CHROMEOS_DIAGNOSTICS_DIAGNOSTICS_UI_H_ | |
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_DIAGNOSTICS_DIAGNOSTICS_UI_H_ | |
7 #include "content/public/browser/web_ui_controller.h" | |
8 | |
9 namespace chromeos { | |
10 | |
11 // WebUI for end-user diagnostic information for Chrome OS devices, for users | |
12 // to self-diagnose hardware and software configuration problems and to help | |
13 // assist support personnel. | |
14 class DiagnosticsUI : public content::WebUIController { | |
15 public: | |
16 explicit DiagnosticsUI(content::WebUI* web_ui); | |
17 | |
18 private: | |
19 DISALLOW_COPY_AND_ASSIGN(DiagnosticsUI); | |
20 }; | |
21 | |
22 } // namespace chromeos | |
James Hawkins
2012/08/02 18:30:08
nit: Two spaces before start of comment.
hshi1
2012/08/02 18:37:19
Done.
| |
23 | |
24 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_DIAGNOSTICS_DIAGNOSTICS_UI_H_ | |
OLD | NEW |