// 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. #include "content/browser/compositor/image_transport_factory.h" #include "base/check.h" namespace content { namespace { ImageTransportFactory* g_image_transport_factory = …; } // namespace // static void ImageTransportFactory::SetFactory( std::unique_ptr<ImageTransportFactory> factory) { … } // static void ImageTransportFactory::Terminate() { … } // static ImageTransportFactory* ImageTransportFactory::GetInstance() { … } } // namespace content