blob: 143c28e51218b77d564aae40be0e0ea0680dcd85 [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
TypeId TypeIdTestSupportA::GetTypeIdForTypeInAnonymousNameSpace() {
return TypeId::From<TypeInAnonymousNameSpace>();
}
TypeId TypeIdTestSupportA::GetTypeIdForUniquePtrInt() {
return TypeId::From<std::unique_ptr<int>>();
}
} // namespace base