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

Side by Side Diff: chrome/browser/ui/webui/signin/profile_signin_confirmation_ui.cc

Issue 12221111: Add a modal confirmation dialog to the enterprise profile sign-in flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: copyright header Created 7 years, 10 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) 2013 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 #include "chrome/browser/ui/webui/signin/profile_signin_confirmation_ui.h"
6
7 #include "base/values.h"
8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/common/url_constants.h"
10 #include "content/public/browser/web_contents.h"
11 #include "content/public/browser/web_ui.h"
12 #include "content/public/browser/web_ui_data_source.h"
13 #include "grit/browser_resources.h"
14 #include "grit/chromium_strings.h"
15 #include "grit/generated_resources.h"
16 #include "ui/base/l10n/l10n_util.h"
17 #include "ui/base/resource/resource_bundle.h"
18
19 ProfileSigninConfirmationUI::ProfileSigninConfirmationUI(content::WebUI* web_ui)
20 : ConstrainedWebDialogUI(web_ui) {
21 content::WebUIDataSource* html_source = content::WebUIDataSource::Create(
22 chrome::kChromeUIProfileSigninConfirmationHost);
23 html_source->SetUseJsonJSFormatV2();
24
25 html_source->AddLocalizedString(
26 "createProfileButtonText",
27 IDS_ENTERPRISE_SIGNIN_CREATE_NEW_PROFILE_YES);
28 html_source->AddLocalizedString(
29 "continueButtonText",
30 IDS_ENTERPRISE_SIGNIN_CREATE_NEW_PROFILE_NO);
31 html_source->AddLocalizedString(
32 "cancelButtonText",
33 IDS_ENTERPRISE_SIGNIN_CREATE_NEW_PROFILE_CANCEL);
34 html_source->AddLocalizedString(
35 "learnMoreText",
36 IDS_ENTERPRISE_SIGNIN_PROFILE_LINK_LEARN_MORE);
37 html_source->AddLocalizedString(
38 "dialogTitle",
39 IDS_ENTERPRISE_SIGNIN_PROFILE_LINK_DIALOG_TITLE);
40 html_source->AddLocalizedString(
41 "dialogMessage",
42 IDS_ENTERPRISE_SIGNIN_PROFILE_LINK_MESSAGE);
43 html_source->AddLocalizedString(
44 "dialogPrompt",
45 IDS_ENTERPRISE_SIGNIN_CREATE_NEW_PROFILE_PROMPT);
46
47 html_source->SetJsonPath("strings.js");
48
49 html_source->AddResourcePath("profile_signin_confirmation.js",
50 IDR_PROFILE_SIGNIN_CONFIRMATION_JS);
51 html_source->SetDefaultResource(IDR_PROFILE_SIGNIN_CONFIRMATION_HTML);
52
53 Profile* profile = Profile::FromWebUI(web_ui);
54 content::WebUIDataSource::Add(profile, html_source);
55 }
56
57 ProfileSigninConfirmationUI::~ProfileSigninConfirmationUI() {
58 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/signin/profile_signin_confirmation_ui.h ('k') | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698