blob: 4c71948c4c408878bc9c03fc10717f1e5dcfed24 [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/thin_webview/thin_webview_initializer.h"
namespace thin_webview {
namespace android {
ThinWebViewInitializer* g_thin_webview_initializer = nullptr;
// static
void ThinWebViewInitializer::SetInstance(ThinWebViewInitializer* instance) {
g_thin_webview_initializer = instance;
}
// static
ThinWebViewInitializer* ThinWebViewInitializer::GetInstance() {
return g_thin_webview_initializer;
}
} // namespace android
} // namespace thin_webview