// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_VIEW_H_ #define CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_VIEW_H_ #include <stddef.h> #include <optional> #include <string> #include "base/memory/weak_ptr.h" #include "components/autofill/core/browser/autofill_client.h" #include "components/autofill/core/common/aliases.h" #include "components/input/native_web_keyboard_event.h" namespace autofill { class AutofillSuggestionController; // The interface for creating and controlling a platform-dependent // AutofillPopupView. class AutofillPopupView { … }; } // namespace autofill #endif // CHROME_BROWSER_UI_AUTOFILL_AUTOFILL_POPUP_VIEW_H_