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

Side by Side Diff: athena/main/athena_main.cc

Issue 542413002: Move launcher API to athena/main/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
« no previous file with comments | « athena/main/athena_launcher.cc ('k') | athena/main/athena_main.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 "athena/activity/public/activity_factory.h" 5 #include "athena/activity/public/activity_factory.h"
6 #include "athena/activity/public/activity_manager.h" 6 #include "athena/activity/public/activity_manager.h"
7 #include "athena/content/public/web_contents_view_delegate_creator.h" 7 #include "athena/content/public/web_contents_view_delegate_creator.h"
8 #include "athena/env/public/athena_env.h" 8 #include "athena/env/public/athena_env.h"
9 #include "athena/extensions/public/extensions_delegate.h" 9 #include "athena/extensions/public/extensions_delegate.h"
10 #include "athena/main/athena_content_client.h" 10 #include "athena/main/athena_content_client.h"
11 #include "athena/main/athena_launcher.h"
12 #include "athena/main/athena_renderer_pdf_helper.h" 11 #include "athena/main/athena_renderer_pdf_helper.h"
12 #include "athena/main/public/athena_launcher.h"
13 #include "athena/screen/public/screen_manager.h" 13 #include "athena/screen/public/screen_manager.h"
14 #include "base/command_line.h" 14 #include "base/command_line.h"
15 #include "base/file_util.h" 15 #include "base/file_util.h"
16 #include "base/path_service.h" 16 #include "base/path_service.h"
17 #include "components/pdf/renderer/ppb_pdf_impl.h" 17 #include "components/pdf/renderer/ppb_pdf_impl.h"
18 #include "content/public/app/content_main.h" 18 #include "content/public/app/content_main.h"
19 #include "content/public/browser/browser_thread.h" 19 #include "content/public/browser/browser_thread.h"
20 #include "extensions/shell/app/shell_main_delegate.h" 20 #include "extensions/shell/app/shell_main_delegate.h"
21 #include "extensions/shell/browser/desktop_controller.h" 21 #include "extensions/shell/browser/desktop_controller.h"
22 #include "extensions/shell/browser/shell_app_window.h" 22 #include "extensions/shell/browser/shell_app_window.h"
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 183
184 int main(int argc, const char** argv) { 184 int main(int argc, const char** argv) {
185 AthenaMainDelegate delegate; 185 AthenaMainDelegate delegate;
186 content::ContentMainParams params(&delegate); 186 content::ContentMainParams params(&delegate);
187 187
188 params.argc = argc; 188 params.argc = argc;
189 params.argv = argv; 189 params.argv = argv;
190 190
191 return content::ContentMain(params); 191 return content::ContentMain(params);
192 } 192 }
OLDNEW
« no previous file with comments | « athena/main/athena_launcher.cc ('k') | athena/main/athena_main.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698