// 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. #ifdef UNSAFE_BUFFERS_BUILD // TODO(crbug.com/40285824): Remove this and convert code to safer constructs. #pragma allow_unsafe_buffers #endif #include "ui/base/nine_image_painter_factory.h" #include <stddef.h> #include "ui/base/resource/resource_bundle.h" #include "ui/gfx/nine_image_painter.h" namespace ui { namespace { std::vector<gfx::ImageSkia> ImageIdsToImages(const int image_ids[]) { … } } // namespace std::unique_ptr<gfx::NineImagePainter> CreateNineImagePainter( const int image_ids[]) { … } } // namespace ui