alt_game_images.cc 515 B

12345678910111213141516171819202122232425
  1. // Copyright (c) 2021 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. #include "components/error_page/common/alt_game_images.h"
  5. #include "base/notreached.h"
  6. namespace error_page {
  7. bool EnableAltGameMode() {
  8. return false;
  9. }
  10. std::string GetAltGameImage(int image_id, int scale) {
  11. NOTIMPLEMENTED();
  12. return std::string();
  13. }
  14. int ChooseAltGame() {
  15. NOTIMPLEMENTED();
  16. return 0;
  17. }
  18. } // namespace error_page