Avi Drissman | 3e1a26c | 2022-09-15 20:26:03 | [diff] [blame] | 1 | // Copyright 2021 The Chromium Authors |
Wei Lee | 6fc33ef4 | 2021-05-25 08:36:26 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Elly Fong-Jones | a8ea66f1 | 2024-07-24 18:37:10 | [diff] [blame] | 5 | #ifdef UNSAFE_BUFFERS_BUILD |
| 6 | // TODO(crbug.com/354829279): Remove this and convert code to safer constructs. |
| 7 | #pragma allow_unsafe_buffers |
| 8 | #endif |
| 9 | |
Wei Lee | 6fc33ef4 | 2021-05-25 08:36:26 | [diff] [blame] | 10 | #include "ui/gfx/image/buffer_w_stream.h" |
| 11 | |
| 12 | #include <utility> |
| 13 | |
| 14 | namespace gfx { |
| 15 | |
| 16 | BufferWStream::BufferWStream() = default; |
| 17 | |
|
|