1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_COLOR_SPACE_PROFILE_DATA_H_
6 #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_COLOR_SPACE_PROFILE_DATA_H_
7 
8 #include "third_party/blink/renderer/platform/platform_export.h"
9 #include "third_party/blink/renderer/platform/wtf/vector.h"
10 
11 namespace blink {
12 
13 PLATFORM_EXPORT void Bt709ColorProfileData(Vector<char>& data);
14 PLATFORM_EXPORT void Bt601ColorProfileData(Vector<char>& data);
15 
16 }  // namespace blink
17 
18 #endif  // THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_COLOR_SPACE_PROFILE_DATA_H_
19