// Copyright 2023 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_COMMERCE_COMMERCE_PAGE_ACTION_CONTROLLER_H_ #define CHROME_BROWSER_UI_COMMERCE_COMMERCE_PAGE_ACTION_CONTROLLER_H_ #include <optional> #include "base/functional/callback.h" #include "base/memory/weak_ptr.h" class GURL; namespace commerce { // The possible ways a suggested save location can be handled. These must be // kept in sync with the values in enums.xml. enum class PageActionIconInteractionState { … }; class CommercePageActionController { … }; } // namespace commerce #endif // CHROME_BROWSER_UI_COMMERCE_COMMERCE_PAGE_ACTION_CONTROLLER_H_