iwyu/hdr_util: Update includes.

Include what you use analysis based include update.

Change-Id: Iaa744570fe3e8f9eddc0fdbd1528c0689a3c40cb
This commit is contained in:
Tom Finegan
2016-03-09 14:18:42 -08:00
parent baba8b128d
commit 3dfba9576a
2 changed files with 11 additions and 1 deletions

View File

@@ -7,6 +7,11 @@
// be found in the AUTHORS file in the root of the source tree.
#include "hdr_util.h"
#include <cstddef>
#include <new>
#include "../mkvparser.hpp"
namespace libwebm {
bool CopyPrimaryChromaticity(const mkvparser::PrimaryChromaticity& parser_pc,
PrimaryChromaticityPtr* muxer_pc) {

View File

@@ -11,7 +11,12 @@
#include <memory>
#include "../mkvmuxer.hpp"
#include "../mkvparser.hpp"
namespace mkvparser {
struct Colour;
struct MasteringMetadata;
struct PrimaryChromaticity;
} // namespace mkvparser
namespace libwebm {