blob: 5b83fd8a385a95abf188fe0374bac95b71b480ec [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/assistant/util/i18n_util.h"
#include "base/i18n/rtl.h"
#include "net/base/url_util.h"
#include "url/gurl.h"
namespace ash {
namespace assistant {
namespace util {
GURL CreateLocalizedGURL(const std::string& url) {
static constexpr char kLocaleParamKey[] = "hl";
return net::AppendOrReplaceQueryParameter(GURL(url), kLocaleParamKey,
base::i18n::GetConfiguredLocale());
}
} // namespace util
} // namespace assistant
} // namespace ash