14 lines
288 B
C++
14 lines
288 B
C++
|
// Copyright (c) 2009 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 "base/i18n/icu_util.h"
|
||
|
|
||
|
namespace icu_util {
|
||
|
|
||
|
bool Initialize() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
} // namespace icu_util
|