OLD | NEW |
| (Empty) |
1 // Copyright 2015 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 "blimp/engine/app/blimp_browser_main_parts.h" | |
6 | |
7 #include <utility> | |
8 | |
9 #include "base/command_line.h" | |
10 #include "base/memory/ptr_util.h" | |
11 #include "base/threading/thread_restrictions.h" | |
12 #include "blimp/common/proto/blimp_message.pb.h" | |
13 #include "blimp/engine/app/blimp_engine_config.h" | |
14 #include "blimp/engine/app/settings_manager.h" | |
15 #include "blimp/engine/common/blimp_browser_context.h" | |
16 #include "blimp/engine/feature/geolocation/blimp_location_provider.h" | |
17 #include "blimp/engine/session/blimp_engine_session.h" | |
18 #include "blimp/net/blimp_connection.h" | |
19 #include "content/public/browser/browser_thread.h" | |
20 #include "content/public/common/main_function_params.h" | |
21 #include "net/base/net_module.h" | |
22 #include "net/log/net_log.h" | |
23 | |
24 namespace blimp { | |
25 namespace engine { | |
26 | |
27 BlimpBrowserMainParts::BlimpBrowserMainParts( | |
28 const content::MainFunctionParams& parameters) {} | |
29 | |
30 BlimpBrowserMainParts::~BlimpBrowserMainParts() {} | |
31 | |
32 void BlimpBrowserMainParts::PreEarlyInitialization() { | |
33 // Fetch the engine config from the command line, and crash if invalid. Allow | |
34 // IO operations even though this is not in the FILE thread as this is | |
35 // necessary for Blimp startup and occurs before any user interaction. | |
36 { | |
37 const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess(); | |
38 base::ThreadRestrictions::ScopedAllowIO allow_io; | |
39 engine_config_ = BlimpEngineConfig::Create(*cmd_line); | |
40 CHECK(engine_config_); | |
41 } | |
42 } | |
43 | |
44 void BlimpBrowserMainParts::PreMainMessageLoopRun() { | |
45 net_log_.reset(new net::NetLog()); | |
46 settings_manager_.reset(new SettingsManager); | |
47 std::unique_ptr<BlimpBrowserContext> browser_context( | |
48 new BlimpBrowserContext(false, net_log_.get())); | |
49 engine_session_.reset( | |
50 new BlimpEngineSession(std::move(browser_context), net_log_.get(), | |
51 engine_config_.get(), settings_manager_.get())); | |
52 engine_session_->Initialize(); | |
53 } | |
54 | |
55 void BlimpBrowserMainParts::PostMainMessageLoopRun() { | |
56 engine_session_.reset(); | |
57 } | |
58 | |
59 BlimpBrowserContext* BlimpBrowserMainParts::GetBrowserContext() { | |
60 return engine_session_->browser_context(); | |
61 } | |
62 | |
63 SettingsManager* BlimpBrowserMainParts::GetSettingsManager() { | |
64 return settings_manager_.get(); | |
65 } | |
66 | |
67 BlobChannelSender* BlimpBrowserMainParts::GetBlobChannelSender() { | |
68 return engine_session_->blob_channel_sender(); | |
69 } | |
70 | |
71 BlobChannelService* BlimpBrowserMainParts::GetBlobChannelService() { | |
72 return engine_session_->GetBlobChannelService(); | |
73 } | |
74 | |
75 BlimpEngineSession* BlimpBrowserMainParts::GetBlimpEngineSession() { | |
76 return engine_session_.get(); | |
77 } | |
78 | |
79 } // namespace engine | |
80 } // namespace blimp | |
OLD | NEW |