query_tile_utils.h 541 B

12345678910111213141516
  1. // Copyright 2022 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 CHROME_BROWSER_QUERY_TILES_QUERY_TILE_UTILS_H_
  5. #define CHROME_BROWSER_QUERY_TILES_QUERY_TILE_UTILS_H_
  6. namespace query_tiles {
  7. // Check whether query tile is enabled.
  8. bool IsQueryTilesEnabled();
  9. // Return the coutry code used for getting the tiles.
  10. std::string GetCountryCode();
  11. } // namespace query_tiles
  12. #endif // CHROME_BROWSER_QUERY_TILES_QUERY_TILE_UTILS_H_