1 // Copyright 2021 The Chromium Embedded Framework Authors. All rights 2 // reserved. Use of this source code is governed by a BSD-style license that can 3 // be found in the LICENSE file. 4 5 #include "include/cef_i18n_util.h" 6 7 #include "base/i18n/rtl.h" 8 CefIsRTL()9bool CefIsRTL() { 10 return base::i18n::IsRTL(); 11 } 12