// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/sync/test/data_type_test_util.h" namespace syncer { void PrintTo(DataTypeSet data_types, ::std::ostream* os) { … } namespace { // Matcher implementation for HasDataTypes(). class HasDataTypesMatcher : public ::testing::MatcherInterface<DataTypeSet> { … }; } // namespace ::testing::Matcher<DataTypeSet> HasDataTypes(DataTypeSet expected_types) { … } } // namespace syncer