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

Side by Side Diff: chrome/browser/ui/webui/chromeos/login/auto_enrollment_check_screen_handler.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_CHROMEOS_LOGIN_AUTO_ENROLLMENT_CHECK_SCREEN_HAND LER_H_ 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_AUTO_ENROLLMENT_CHECK_SCREEN_HAND LER_H_
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_AUTO_ENROLLMENT_CHECK_SCREEN_HAND LER_H_ 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_AUTO_ENROLLMENT_CHECK_SCREEN_HAND LER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "chrome/browser/chromeos/login/enrollment/auto_enrollment_check_screen_ actor.h" 10 #include "chrome/browser/chromeos/login/enrollment/auto_enrollment_check_screen_ actor.h"
11 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" 11 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h"
12 #include "content/public/browser/web_ui.h" 12 #include "content/public/browser/web_ui.h"
13 13
14 namespace base {
15 class DictionaryValue;
16 }
17
18 namespace chromeos { 14 namespace chromeos {
19 15
20 // WebUI implementation of AutoEnrollmentCheckScreenActor. 16 // WebUI implementation of AutoEnrollmentCheckScreenActor.
21 class AutoEnrollmentCheckScreenHandler : public AutoEnrollmentCheckScreenActor, 17 class AutoEnrollmentCheckScreenHandler : public AutoEnrollmentCheckScreenActor,
22 public BaseScreenHandler { 18 public BaseScreenHandler {
23 public: 19 public:
24 AutoEnrollmentCheckScreenHandler(); 20 AutoEnrollmentCheckScreenHandler();
25 ~AutoEnrollmentCheckScreenHandler() override; 21 ~AutoEnrollmentCheckScreenHandler() override;
26 22
27 // AutoEnrollmentCheckScreenActor implementation: 23 // AutoEnrollmentCheckScreenActor implementation:
(...skipping 14 matching lines...) Expand all
42 // Keeps whether screen should be shown right after initialization. 38 // Keeps whether screen should be shown right after initialization.
43 bool show_on_init_; 39 bool show_on_init_;
44 40
45 DISALLOW_COPY_AND_ASSIGN(AutoEnrollmentCheckScreenHandler); 41 DISALLOW_COPY_AND_ASSIGN(AutoEnrollmentCheckScreenHandler);
46 }; 42 };
47 43
48 } // namespace chromeos 44 } // namespace chromeos
49 45
50 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_AUTO_ENROLLMENT_CHECK_SCREEN_H ANDLER_H_ 46 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_AUTO_ENROLLMENT_CHECK_SCREEN_H ANDLER_H_
51 47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698