blob: 9085f7e65c788fe9e73ed7ae63f99592b68f0f7f [file] [log] [blame]
// Copyright 2024 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_ASH_INPUT_METHOD_EDITOR_GEOLOCATION_PROVIDER_H_
#define CHROME_BROWSER_ASH_INPUT_METHOD_EDITOR_GEOLOCATION_PROVIDER_H_
#include <string>
namespace ash::input_method {
class EditorGeolocationProvider {
public:
virtual ~EditorGeolocationProvider() = default;
virtual std::string GetCountryCode() = 0;
};
} // namespace ash::input_method
#endif // CHROME_BROWSER_ASH_INPUT_METHOD_EDITOR_GEOLOCATION_PROVIDER_H_