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

Side by Side Diff: athena/main/public/athena_launcher.h

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « athena/main/placeholder.cc ('k') | athena/resource_manager/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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 #ifndef ATHENA_MAIN_PUBLIC_ATHENA_LAUNCHER_H_
6 #define ATHENA_MAIN_PUBLIC_ATHENA_LAUNCHER_H_
7
8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h"
10
11 namespace base {
12 class TaskRunner;
13 }
14
15 namespace aura {
16 class Window;
17 }
18
19 namespace content {
20 class BrowserContext;
21 }
22
23 namespace athena {
24 class ActivityFactory;
25 class AppModelBuilder;
26 class SearchControllerFactory;
27
28 // Starts down the athena shell environment.
29 void StartAthenaEnv(scoped_refptr<base::TaskRunner> file_runner);
30
31 void StartAthenaSessionWithContext(content::BrowserContext* context);
32
33 void CreateVirtualKeyboardWithContext(content::BrowserContext* context);
34
35 // Starts the athena session.
36 void StartAthenaSession(ActivityFactory* activity_factory,
37 scoped_ptr<AppModelBuilder> app_model_builder,
38 scoped_ptr<SearchControllerFactory> search_factory);
39
40 void ShutdownAthena();
41
42 } // namespace athena
43
44 #endif // ATHENA_MAIN_PUBLIC_ATHENA_LAUNCHER_H_
OLDNEW
« no previous file with comments | « athena/main/placeholder.cc ('k') | athena/resource_manager/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698