Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1291)

Side by Side Diff: chrome/browser/ui/webui/chromeos/diagnostics/diagnostics_ui.h

Issue 10836039: Chrome diagnostics: First cut at implementing chrome://diagnostics. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase @ 149442. Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698