// Copyright 2020 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_CART_CART_HANDLER_H_ #define CHROME_BROWSER_CART_CART_HANDLER_H_ #include "base/memory/raw_ptr.h" #include "chrome/browser/cart/cart_service.h" #include "chrome/browser/cart/chrome_cart.mojom.h" #include "mojo/public/cpp/bindings/pending_receiver.h" #include "mojo/public/cpp/bindings/receiver.h" class Profile; class PrefService; namespace content { class WebContents; } // namespace content // Handles requests of chrome cart module sent from JS. class CartHandler : public chrome_cart::mojom::CartHandler { … }; #endif // CHROME_BROWSER_CART_CART_HANDLER_H_