// Copyright 2016 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/platform/graphics/color_space_profile_data.h" #include "base/check.h" #include "third_party/blink/renderer/platform/wtf/wtf.h" struct bt709ColorProfile { … }; struct bt601ColorProfile { … }; namespace blink { void Bt709ColorProfileData(Vector<char>& data) { … } void Bt601ColorProfileData(Vector<char>& data) { … } } // namespace blink