| // Copyright 2014 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #import "ios/web/shell/shell_web_main_parts.h" |
| |
| #import "ios/web/shell/shell_browser_state.h" |
| #import "ui/display/screen.h" |
| |
| #if DCHECK_IS_ON() |
| #import "ui/display/screen_base.h" |
| #endif |
| |
| namespace web { |
| |
| ShellWebMainParts::ShellWebMainParts() |
| : screen_(std::make_unique<display::ScopedNativeScreen>()) {} |
| |
| ShellWebMainParts::~ShellWebMainParts() { |
| #if DCHECK_IS_ON() |
| // Make sure that all display observers are removed at the end. |
| display::ScreenBase* screen = |
| static_cast<display::ScreenBase*>(display::Screen::Get()); |
| DCHECK(!screen->HasDisplayObservers()); |
| #endif |
| } |
| |
| void ShellWebMainParts::PreMainMessageLoopRun() { |
| browser_state_.reset(new ShellBrowserState); |
| } |
| |
| } // namespace web |