#ifndef UI_COLOR_COLOR_METRICS_H_
#define UI_COLOR_COLOR_METRICS_H_
#include "base/component_export.h"
namespace base {
class TimeDelta;
}
namespace ui {
void COMPONENT_EXPORT(COLOR) RecordColorProviderCacheSize(int cache_size);
void COMPONENT_EXPORT(COLOR)
RecordNumColorProvidersInitializedDuringOnNativeThemeUpdated(
int num_providers);
void COMPONENT_EXPORT(COLOR)
RecordTimeSpentInitializingColorProvider(base::TimeDelta duration);
void COMPONENT_EXPORT(COLOR) RecordTimeSpentProcessingOnNativeThemeUpdatedEvent(
base::TimeDelta duration);
}
#endif