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

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

Issue 120343004: Reland r242290, r241609, r242134. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 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/inline_login_ui.h"
6
7 #include "chrome/browser/profiles/profile.h"
8 #include "chrome/common/url_constants.h"
9 #include "content/public/browser/web_ui.h"
10 #include "content/public/browser/web_ui_data_source.h"
11 #include "grit/browser_resources.h"
12
13 #if defined(OS_CHROMEOS)
14 #include "chrome/browser/ui/webui/chromeos/login/inline_login_handler_chromeos.h "
15 #else
16 #include "chrome/browser/extensions/tab_helper.h"
17 #include "chrome/browser/ui/webui/signin/inline_login_handler_impl.h"
18 #endif
19
20 namespace {
21
22 content::WebUIDataSource* CreateWebUIDataSource() {
23 content::WebUIDataSource* source =
24 content::WebUIDataSource::Create(chrome::kChromeUIChromeSigninHost);
25 source->SetUseJsonJSFormatV2();
26 source->SetJsonPath("strings.js");
27
28 source->SetDefaultResource(IDR_INLINE_LOGIN_HTML);
29 source->AddResourcePath("inline_login.css", IDR_INLINE_LOGIN_CSS);
30 source->AddResourcePath("inline_login.js", IDR_INLINE_LOGIN_JS);
31 return source;
32 };
33
34 } // empty namespace
35
36 InlineLoginUI::InlineLoginUI(content::WebUI* web_ui)
37 : WebDialogUI(web_ui),
38 auth_extension_(Profile::FromWebUI(web_ui)) {
39 Profile* profile = Profile::FromWebUI(web_ui);
40 content::WebUIDataSource::Add(profile, CreateWebUIDataSource());
41
42 #if defined(OS_CHROMEOS)
43 web_ui->AddMessageHandler(new chromeos::InlineLoginHandlerChromeOS());
44 #else
45 web_ui->AddMessageHandler(new InlineLoginHandlerImpl());
46 // Required for intercepting extension function calls when the page is loaded
47 // in a bubble (not a full tab, thus tab helpers are not registered
48 // automatically).
49 extensions::TabHelper::CreateForWebContents(web_ui->GetWebContents());
50 #endif
51 }
52
53 InlineLoginUI::~InlineLoginUI() {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698