00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00018
00019 #ifndef NET_INSTAWEB_HTMLPARSE_PUBLIC_STATISTICS_LOG_H_
00020 #define NET_INSTAWEB_HTMLPARSE_PUBLIC_STATISTICS_LOG_H_
00021
00022 #include "net/instaweb/util/public/basictypes.h"
00023
00024 namespace net_instaweb {
00025
00026 class StatisticsLog {
00027 public:
00028 StatisticsLog() { }
00029 virtual ~StatisticsLog();
00030 virtual void LogStat(const char *statName, int value) = 0;
00031
00032 private:
00033 DISALLOW_COPY_AND_ASSIGN(StatisticsLog);
00034 };
00035
00036 }
00037
00038 #endif ///< NET_INSTAWEB_HTMLPARSE_PUBLIC_STATISTICS_LOG_H_