Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(826)

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogField.java

Issue 21205007: [rAc Android] Remove the old dialog implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogField.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogField.java b/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogField.java
deleted file mode 100644
index 4a2a19f03c113dd0d31c53ea28be59074b318616..0000000000000000000000000000000000000000
--- a/chrome/android/java/src/org/chromium/chrome/browser/autofill/AutofillDialogField.java
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright (c) 2013 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.autofill;
-
-/**
- * Autofill dialog field container to store information needed for each Autofill dialog entry.
- */
-public class AutofillDialogField {
- final int mNativePointer;
- final int mFieldType;
- final String mPlaceholder;
- private String mValue;
-
- /**
- * @param nativePointer The pointer to the corresponding native object.
- * @param fieldType The input field type that got determined by the server.
- * @param placeholder Placeholder text for this input field.
- * @param value Autofill value for this input field.
- */
- public AutofillDialogField(int nativePointer, int fieldType, String placeholder, String value) {
- mNativePointer = nativePointer;
- mFieldType = fieldType;
- mPlaceholder = placeholder;
- mValue = value;
- }
-
- /**
- * @return The current value of the field string.
- */
- public String getValue() {
- return mValue;
- }
-
- /**
- * Set the value to be shown for this field.
- * @param value The string for the value.
- */
- public void setValue(String value) {
- mValue = value;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698