blob: 2db005b7a0f23dceec1277582e93b44e0650dd74 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/test/type_id_test_support_a.h"
#include <memory>
namespace {
struct TypeInAnonymousNameSpace {};
} // namespace
namespace base {
// static
experimental::TypeId
TypeIdTestSupportA::GetTypeIdForTypeInAnonymousNameSpace() {
return experimental::TypeId::Create<TypeInAnonymousNameSpace>();
}
experimental::TypeId TypeIdTestSupportA::GetTypeIdForUniquePtrInt() {
return experimental::TypeId::Create<std::unique_ptr<int>>();
}
} // namespace base