chromium/cc/resources/scoped_ui_resource.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cc/resources/scoped_ui_resource.h"

#include "base/functional/bind.h"
#include "base/memory/ptr_util.h"
#include "cc/resources/ui_resource_manager.h"

namespace cc {

std::unique_ptr<ScopedUIResource> ScopedUIResource::Create(
    UIResourceManager* ui_resource_manager,
    const UIResourceBitmap& bitmap) {}

ScopedUIResource::ScopedUIResource(UIResourceManager* ui_resource_manager,
                                   const UIResourceBitmap& bitmap)
    :{}

// User must make sure that host is still valid before this object goes out of
// scope.
ScopedUIResource::~ScopedUIResource() {}

UIResourceBitmap ScopedUIResource::GetBitmap(UIResourceId uid,
                                             bool resource_lost) {}

}  // namespace cc