OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_ENTERPRISE_OAUTH_ENROLLMENT_SCREE
N_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_ENTERPRISE_OAUTH_ENROLLMENT_SCREE
N_HANDLER_H_ |
6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_ENTERPRISE_OAUTH_ENROLLMENT_SCREE
N_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_ENTERPRISE_OAUTH_ENROLLMENT_SCREE
N_HANDLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/values.h" | 13 #include "base/values.h" |
14 #include "chrome/browser/browsing_data_remover.h" | 14 #include "chrome/browser/browsing_data/browsing_data_remover.h" |
15 #include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_screen_
actor.h" | 15 #include "chrome/browser/chromeos/login/enrollment/enterprise_enrollment_screen_
actor.h" |
16 #include "chrome/browser/net/gaia/gaia_oauth_consumer.h" | 16 #include "chrome/browser/net/gaia/gaia_oauth_consumer.h" |
17 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" | 17 #include "chrome/browser/ui/webui/chromeos/login/base_screen_handler.h" |
18 | 18 |
19 class GaiaOAuthFetcher; | 19 class GaiaOAuthFetcher; |
20 | 20 |
21 namespace chromeos { | 21 namespace chromeos { |
22 | 22 |
23 // WebUIMessageHandler implementation which handles events occurring on the | 23 // WebUIMessageHandler implementation which handles events occurring on the |
24 // page, such as the user pressing the signin button. | 24 // page, such as the user pressing the signin button. |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 | 138 |
139 // What to do when browsing data is removed. | 139 // What to do when browsing data is removed. |
140 base::Closure action_on_browsing_data_removed_; | 140 base::Closure action_on_browsing_data_removed_; |
141 | 141 |
142 DISALLOW_COPY_AND_ASSIGN(EnterpriseOAuthEnrollmentScreenHandler); | 142 DISALLOW_COPY_AND_ASSIGN(EnterpriseOAuthEnrollmentScreenHandler); |
143 }; | 143 }; |
144 | 144 |
145 } // namespace chromeos | 145 } // namespace chromeos |
146 | 146 |
147 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_ENTERPRISE_OAUTH_ENROLLMENT_SC
REEN_HANDLER_H_ | 147 #endif // CHROME_BROWSER_UI_WEBUI_CHROMEOS_LOGIN_ENTERPRISE_OAUTH_ENROLLMENT_SC
REEN_HANDLER_H_ |
OLD | NEW |