summaryrefslogtreecommitdiffstats
path: root/toolkit/components/satchel/nsFormFillController.h
diff options
context:
space:
mode:
Diffstat (limited to 'toolkit/components/satchel/nsFormFillController.h')
-rw-r--r--toolkit/components/satchel/nsFormFillController.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/toolkit/components/satchel/nsFormFillController.h b/toolkit/components/satchel/nsFormFillController.h
index 239c293352..c6781e6d2f 100644
--- a/toolkit/components/satchel/nsFormFillController.h
+++ b/toolkit/components/satchel/nsFormFillController.h
@@ -19,7 +19,6 @@
#include "nsTHashMap.h"
#include "nsInterfaceHashtable.h"
#include "nsIDocShell.h"
-#include "nsILoginAutoCompleteSearch.h"
#include "nsIMutationObserver.h"
#include "nsIObserver.h"
#include "nsCycleCollectionParticipant.h"
@@ -98,13 +97,9 @@ class nsFormFillController final : public nsIFormFillController,
bool IsTextControl(nsINode* aNode);
- MOZ_CAN_RUN_SCRIPT NS_IMETHODIMP isLoginManagerField(
- mozilla::dom::HTMLInputElement* aInput, bool* isLoginManagerField);
-
// members //////////////////////////////////////////
nsCOMPtr<nsIAutoCompleteController> mController;
- nsCOMPtr<nsILoginAutoCompleteSearch> mLoginManagerAC;
mozilla::dom::HTMLInputElement* mFocusedInput;
// mListNode is a <datalist> element which, is set, has the form fill
@@ -112,21 +107,14 @@ class nsFormFillController final : public nsIFormFillController,
nsINode* mListNode;
nsCOMPtr<nsIAutoCompletePopup> mFocusedPopup;
- // Only used by tests.
- nsInterfaceHashtable<nsRefPtrHashKey<mozilla::dom::Document>,
- nsIAutoCompletePopup>
- mPopups;
-
// The observer passed to StartSearch. It will be notified when the search
// is complete or the data from a datalist changes.
nsCOMPtr<nsIAutoCompleteObserver> mLastListener;
// This is cleared by StopSearch().
- nsCOMPtr<nsIFormHistoryAutoComplete> mLastFormHistoryAutoComplete;
nsString mLastSearchString;
- nsTHashMap<nsPtrHashKey<const nsINode>, bool> mPwmgrInputs;
- nsTHashMap<nsPtrHashKey<const nsINode>, bool> mAutofillInputs;
+ nsTHashMap<nsPtrHashKey<const nsINode>, bool> mAutoCompleteInputs;
uint16_t mFocusAfterRightClickThreshold;
uint32_t mTimeout;