blob: 2a68127d45187ae5a467555a8aa834cbfb0c2d19 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/safe_browsing/content/browser/safe_browsing_service_interface.h"
namespace safe_browsing {
SafeBrowsingServiceInterface*
SafeBrowsingServiceInterface::CreateSafeBrowsingService() {
return factory_ ? factory_->CreateSafeBrowsingService() : nullptr;
}
// static
SafeBrowsingServiceFactory* SafeBrowsingServiceInterface::factory_ = nullptr;
} // namespace safe_browsing