// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/formats/mp4/sample_to_group_iterator.h" #include "base/check.h" namespace media { namespace mp4 { SampleToGroupIterator::SampleToGroupIterator( const SampleToGroup& sample_to_group) : … { … } SampleToGroupIterator::~SampleToGroupIterator() = default; bool SampleToGroupIterator::Advance() { … } bool SampleToGroupIterator::IsValid() const { … } } // namespace mp4 } // namespace media