heavy_ad_helper.h 602 B

123456789101112131415161718
  1. // Copyright 2019 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef COMPONENTS_HEAVY_AD_INTERVENTION_HEAVY_AD_HELPER_H_
  5. #define COMPONENTS_HEAVY_AD_INTERVENTION_HEAVY_AD_HELPER_H_
  6. #include <string>
  7. namespace heavy_ad_intervention {
  8. // Returns a string containing HTML of an error page for the heavy ad
  9. // intervention.
  10. std::string PrepareHeavyAdPage(const std::string& application_locale);
  11. } // namespace heavy_ad_intervention
  12. #endif // COMPONENTS_HEAVY_AD_INTERVENTION_HEAVY_AD_HELPER_H_