| // 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_view/internal/web_view_web_main_delegate.h" |
| |
| #import "base/apple/bundle_locations.h" |
| #import "base/base_paths.h" |
| #import "base/logging.h" |
| #import "base/logging/logging_settings.h" |
| #import "components/component_updater/component_updater_paths.h" |
| |
| // Dummy class used to locate the containing NSBundle. |
| @interface CWVBundleLocator : NSObject |
| @end |
| |
| @implementation CWVBundleLocator |
| @end |
| |
| namespace ios_web_view { |
| |
| WebViewWebMainDelegate::WebViewWebMainDelegate() {} |
| |
| WebViewWebMainDelegate::~WebViewWebMainDelegate() = default; |
| |
| void WebViewWebMainDelegate::BasicStartupComplete() { |
| base::apple::SetOverrideFrameworkBundle( |
| [NSBundle bundleForClass:[CWVBundleLocator class]]); |
| |
| // Sets up logging so logging levels can be controlled. |
| logging::InitLogging(logging::LoggingSettings()); |
| |
| component_updater::RegisterPathProvider(base::DIR_APP_DATA, |
| base::DIR_APP_DATA); |
| } |
| |
| } // namespace ios_web_view |