| Index: chrome/android/java/src/org/chromium/chrome/browser/payments/Completable.java
|
| diff --git a/chrome/android/java/src/org/chromium/chrome/browser/payments/Completable.java b/chrome/android/java/src/org/chromium/chrome/browser/payments/Completable.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..92b6a9a386d37708829a2f71cc1fe958c825f6da
|
| --- /dev/null
|
| +++ b/chrome/android/java/src/org/chromium/chrome/browser/payments/Completable.java
|
| @@ -0,0 +1,14 @@
|
| +// Copyright 2016 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.payments;
|
| +
|
| +/**
|
| + * The interface for types that may be complete, i.e., can be sent to the merchant as-is, without
|
| + * being edited by the user first.
|
| + */
|
| +public interface Completable {
|
| + /** @return Whether the data is complete and can be sent to the merchant as-is */
|
| + boolean isComplete();
|
| +}
|
|
|