sqlite_shell_icu_helper.cc 356 B

123456789101112
  1. // Copyright 2019 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 "third_party/sqlite/sqlite_shell_icu_helper.h"
  5. #include "base/check.h"
  6. #include "base/i18n/icu_util.h"
  7. void InitializeICUForSqliteShell() {
  8. CHECK(base::i18n::InitializeICU());
  9. }