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 #include "chrome/browser/ui/webui/chromeos/login/eula_screen_handler.h" | 5 #include "chrome/browser/ui/webui/chromeos/login/eula_screen_handler.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "chrome/browser/chromeos/login/help_app_launcher.h" | 10 #include "chrome/browser/chromeos/login/help_app_launcher.h" |
11 #include "chrome/browser/chromeos/login/helper.h" | 11 #include "chrome/browser/chromeos/login/helper.h" |
12 #include "chrome/browser/chromeos/login/login_web_dialog.h" | |
13 #include "chrome/browser/chromeos/login/screens/core_oobe_actor.h" | 12 #include "chrome/browser/chromeos/login/screens/core_oobe_actor.h" |
14 #include "chrome/browser/chromeos/login/webui_login_display.h" | 13 #include "chrome/browser/chromeos/login/ui/login_web_dialog.h" |
| 14 #include "chrome/browser/chromeos/login/ui/webui_login_display.h" |
15 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" | 15 #include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
16 #include "chrome/common/url_constants.h" | 16 #include "chrome/common/url_constants.h" |
17 #include "content/public/browser/web_contents.h" | 17 #include "content/public/browser/web_contents.h" |
18 #include "grit/browser_resources.h" | 18 #include "grit/browser_resources.h" |
19 #include "grit/chromium_strings.h" | 19 #include "grit/chromium_strings.h" |
20 #include "grit/generated_resources.h" | 20 #include "grit/generated_resources.h" |
21 #include "grit/locale_settings.h" | 21 #include "grit/locale_settings.h" |
22 #include "ui/base/l10n/l10n_util.h" | 22 #include "ui/base/l10n/l10n_util.h" |
23 #include "ui/views/widget/widget.h" | 23 #include "ui/views/widget/widget.h" |
24 #include "url/gurl.h" | 24 #include "url/gurl.h" |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 IDS_ABOUT_VERSION_LICENSE_EULA, | 211 IDS_ABOUT_VERSION_LICENSE_EULA, |
212 GURL(chrome::kChromeUICreditsURL)); | 212 GURL(chrome::kChromeUICreditsURL)); |
213 } | 213 } |
214 | 214 |
215 void EulaScreenHandler::HandleOnInstallationSettingsPopupOpened() { | 215 void EulaScreenHandler::HandleOnInstallationSettingsPopupOpened() { |
216 if (delegate_) | 216 if (delegate_) |
217 delegate_->InitiatePasswordFetch(); | 217 delegate_->InitiatePasswordFetch(); |
218 } | 218 } |
219 | 219 |
220 } // namespace chromeos | 220 } // namespace chromeos |
OLD | NEW |