| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "blimp/engine/app/blimp_browser_main_parts.h" | 5 #include "blimp/engine/testing/app/blimp_browser_testing_main_parts.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/memory/ptr_util.h" | 10 #include "base/memory/ptr_util.h" |
| 11 #include "base/threading/thread_restrictions.h" | 11 #include "base/threading/thread_restrictions.h" |
| 12 #include "blimp/common/proto/blimp_message.pb.h" | 12 #include "blimp/common/proto/blimp_message.pb.h" |
| 13 #include "blimp/engine/app/blimp_engine_config.h" | 13 #include "blimp/engine/app/blimp_engine_config.h" |
| 14 #include "blimp/engine/app/settings_manager.h" | 14 #include "blimp/engine/app/settings_manager.h" |
| 15 #include "blimp/engine/common/blimp_browser_context.h" | 15 #include "blimp/engine/common/blimp_browser_context.h" |
| 16 #include "blimp/engine/feature/geolocation/blimp_location_provider.h" | 16 #include "blimp/engine/feature/geolocation/blimp_location_provider.h" |
| 17 #include "blimp/engine/session/blimp_engine_session.h" | 17 #include "blimp/engine/session/blimp_engine_session.h" |
| 18 #include "blimp/engine/testing/session/blimp_engine_testing_session.h" |
| 18 #include "blimp/net/blimp_connection.h" | 19 #include "blimp/net/blimp_connection.h" |
| 19 #include "content/public/browser/browser_thread.h" | 20 #include "content/public/browser/browser_thread.h" |
| 20 #include "content/public/common/main_function_params.h" | 21 #include "content/public/common/main_function_params.h" |
| 21 #include "net/base/net_module.h" | 22 #include "net/base/net_module.h" |
| 22 #include "net/log/net_log.h" | 23 #include "net/log/net_log.h" |
| 23 | 24 |
| 24 namespace blimp { | 25 namespace blimp { |
| 25 namespace engine { | 26 namespace engine { |
| 26 | 27 |
| 27 BlimpBrowserMainParts::BlimpBrowserMainParts( | 28 BlimpBrowserTestingMainParts::BlimpBrowserTestingMainParts( |
| 28 const content::MainFunctionParams& parameters) {} | 29 const content::MainFunctionParams& parameters) |
| 30 : BlimpBrowserMainParts(parameters){}; |
| 29 | 31 |
| 30 BlimpBrowserMainParts::~BlimpBrowserMainParts() {} | 32 void BlimpBrowserTestingMainParts::PreEarlyInitialization() { |
| 31 | |
| 32 void BlimpBrowserMainParts::PreEarlyInitialization() { | |
| 33 // Fetch the engine config from the command line, and crash if invalid. Allow | 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 | 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. | 35 // necessary for Blimp startup and occurs before any user interaction. |
| 36 { | 36 { |
| 37 const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess(); | 37 const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess(); |
| 38 base::ThreadRestrictions::ScopedAllowIO allow_io; | 38 base::ThreadRestrictions::ScopedAllowIO allow_io; |
| 39 engine_config_ = BlimpEngineConfig::Create(*cmd_line); | 39 engine_config_ = BlimpEngineConfig::Create(*cmd_line); |
| 40 CHECK(engine_config_); | 40 CHECK(engine_config_); |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 void BlimpBrowserMainParts::PreMainMessageLoopRun() { | 44 void BlimpBrowserTestingMainParts::PreMainMessageLoopRun() { |
| 45 net_log_.reset(new net::NetLog()); | 45 net_log_.reset(new net::NetLog()); |
| 46 settings_manager_.reset(new SettingsManager); | 46 settings_manager_.reset(new SettingsManager); |
| 47 std::unique_ptr<BlimpBrowserContext> browser_context( | 47 std::unique_ptr<BlimpBrowserContext> browser_context( |
| 48 new BlimpBrowserContext(false, net_log_.get())); | 48 new BlimpBrowserContext(false, net_log_.get())); |
| 49 engine_session_.reset( | 49 engine_session_.reset(new BlimpEngineTestingSession( |
| 50 new BlimpEngineSession(std::move(browser_context), net_log_.get(), | 50 std::move(browser_context), net_log_.get(), engine_config_.get(), |
| 51 engine_config_.get(), settings_manager_.get())); | 51 settings_manager_.get())); |
| 52 engine_session_->Initialize(); | 52 engine_session_->Initialize(); |
| 53 } | 53 BlimpBrowserMainParts::SetSettingsManagerForTesting( |
| 54 | 54 std::move(settings_manager_)); |
| 55 void BlimpBrowserMainParts::PostMainMessageLoopRun() { | 55 BlimpBrowserMainParts::SetEngineSessionForTesting(std::move(engine_session_)); |
| 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 } | 56 } |
| 78 | 57 |
| 79 } // namespace engine | 58 } // namespace engine |
| 80 } // namespace blimp | 59 } // namespace blimp |
| OLD | NEW |