// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_BASE_L10N_TIME_FORMAT_H_ #define UI_BASE_L10N_TIME_FORMAT_H_ #include <string> #include "base/component_export.h" #include "build/build_config.h" namespace base { class Time; class TimeDelta; } namespace ui { // Methods to format time values as strings. class COMPONENT_EXPORT(UI_BASE) TimeFormat { … }; } // namespace ui #endif // UI_BASE_L10N_TIME_FORMAT_H_