blob: f4f63fe3e77a04b42d4992c57411fa97367937fc [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 "chrome/browser/touch_to_fill/touch_to_fill_view_factory.h"
#include "chrome/browser/touch_to_fill/android/touch_to_fill_view_impl.h"
// static
std::unique_ptr<TouchToFillView> TouchToFillViewFactory::Create(
TouchToFillController* controller) {
return std::make_unique<TouchToFillViewImpl>(controller);
}