| // 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. |
| |
| #include "components/commerce/core/commerce_constants.h" |
| |
| namespace commerce { |
| |
| const char kChromeUICommerceInternalsHost[] = "commerce-internals"; |
| |
| const char kChromeUIShoppingInsightsSidePanelHost[] = |
| "shopping-insights-side-panel.top-chrome"; |
| |
| const char kChromeUIShoppingInsightsSidePanelUrl[] = |
| "chrome://shopping-insights-side-panel.top-chrome"; |
| |
| const char kOAuthScope[] = "https://www.googleapis.com/auth/chromememex"; |
| |
| const char kOAuthName[] = "chromememex_svc"; |
| |
| const char kDeleteHttpMethod[] = "DELETE"; |
| |
| const char kGetHttpMethod[] = "GET"; |
| |
| const char kPostHttpMethod[] = "POST"; |
| |
| const char kContentType[] = "application/json; charset=UTF-8"; |
| |
| const char kEmptyPostData[] = ""; |
| |
| const char kUTMSourceLabel[] = "utm_source"; |
| |
| const char kUTMMediumLabel[] = "utm_medium"; |
| |
| const char kUTMCampaignLabel[] = "utm_campaign"; |
| |
| const char kUTMSourceValue[] = "chrome"; |
| |
| const char kUTMMediumValue[] = "app"; |
| |
| const char kUTMCampaignValueForDiscounts[] = |
| "chrome-history-cluster-with-discount"; |
| |
| const char kUTMPrefix[] = "utm_"; |
| |
| const char kOgImage[] = "image"; |
| const char kOgPriceAmount[] = "price:amount"; |
| const char kOgPriceCurrency[] = "price:currency"; |
| const char kOgProductLink[] = "product_link"; |
| const char kOgTitle[] = "title"; |
| const char kOgType[] = "type"; |
| |
| const char kOgTypeOgProduct[] = "product"; |
| const char kOgTypeProductItem[] = "product.item"; |
| |
| } // namespace commerce |