blob: 8310e65ee068a530a71496ddc28ea234f33b2e9b [file] [log] [blame]
// Copyright 2019 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.
package org.chromium.chrome.browser.keyboard_accessory;
/**
* Use {@link #createComponent()} to instantiate a {@link ManualFillingComponent}.
*/
public class ManualFillingComponentFactory {
private ManualFillingComponentFactory() {}
/**
* Creates a {@link ManualFillingComponent} if the implementation is available. If it isn't,
* null is returned instead which doesn't do anything.
* @return null.
*/
public static ManualFillingComponent createComponent() {
return null;
}
}