blob: 1ac9af7e592ab25e9665bfb363b285eb23e7fd10 [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_b.h"
#include <memory>
namespace {
struct TypeInAnonymousNameSpace {};
} // namespace
namespace base {
// static
TypeId TypeIdTestSupportB::GetTypeIdForTypeInAnonymousNameSpace() {
return TypeId::From<TypeInAnonymousNameSpace>();
}
TypeId TypeIdTestSupportB::GetTypeIdForUniquePtrInt() {
return TypeId::From<std::unique_ptr<int>>();
}
} // namespace base