blob: 95f1c0b41fa4072f98389be58db6a1e04dcf8411 [file] [log] [blame]
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ios/chrome/browser/overlays/overlay_response_impl.h"
// static
std::unique_ptr<OverlayResponse> OverlayResponse::Create() {
return std::make_unique<OverlayResponseImpl>();
}
OverlayResponseImpl::OverlayResponseImpl() {}
OverlayResponseImpl::~OverlayResponseImpl() {}
base::SupportsUserData* OverlayResponseImpl::data() {
return this;
}