From 2563ae7fe9b6728994bb12628de9ced0d0caeb9c Mon Sep 17 00:00:00 2001 From: Aaron Vaage Date: Thu, 26 Apr 2018 10:06:05 -0700 Subject: [PATCH] Add Missing Header Guards To Cue Aligner Change-Id: I0f9e892172932dc560101865df6539736388721a --- packager/media/chunking/cue_alignment_handler.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packager/media/chunking/cue_alignment_handler.h b/packager/media/chunking/cue_alignment_handler.h index 317d2c98a9..0d5518eac0 100644 --- a/packager/media/chunking/cue_alignment_handler.h +++ b/packager/media/chunking/cue_alignment_handler.h @@ -4,6 +4,9 @@ // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd +#ifndef PACKAGER_MEDIA_CHUNKING_CUE_ALIGNMENT_HANDLER_ +#define PACKAGER_MEDIA_CHUNKING_CUE_ALIGNMENT_HANDLER_ + #include #include "packager/media/base/media_handler.h" @@ -81,3 +84,5 @@ class CueAlignmentHandler : public MediaHandler { } // namespace media } // namespace shaka + +#endif // PACKAGER_MEDIA_CHUNKING_CUE_ALIGNMENT_HANDLER_