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

Unified Diff: athena/main/athena_launcher.cc

Issue 542623002: Minimal support for OOBE/login for chrome-athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments resolved Created 6 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: athena/main/athena_launcher.cc
diff --git a/athena/main/athena_launcher.cc b/athena/main/athena_launcher.cc
index 4efd3196b33be76e0cf430038932d430e68471c8..83b22c192cc3dcae3c4eafb8a5e0538eaebd90b6 100644
--- a/athena/main/athena_launcher.cc
+++ b/athena/main/athena_launcher.cc
@@ -129,10 +129,13 @@ void StartAthenaEnv(scoped_refptr<base::TaskRunner> file_runner) {
kAthenaEnvStateKey, env_state);
}
+void CreateVirtualKeyboardWithContext(content::BrowserContext* context) {
+ athena::VirtualKeyboardManager::Create(context);
+}
+
void StartAthenaSessionWithContext(content::BrowserContext* context) {
StartAthenaSession(athena::CreateContentActivityFactory(),
new athena::ContentAppModelBuilder(context));
- athena::VirtualKeyboardManager::Create(context);
athena::HomeCard::Get()->RegisterSearchProvider(
new athena::UrlSearchProvider(context));
AthenaEnvState* env_state =

Powered by Google App Engine
This is Rietveld 408576698