summaryrefslogtreecommitdiffstats
path: root/webkit/appcache/appcache_histograms.h
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/appcache/appcache_histograms.h')
-rw-r--r--webkit/appcache/appcache_histograms.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/webkit/appcache/appcache_histograms.h b/webkit/appcache/appcache_histograms.h
new file mode 100644
index 0000000..431c6bd
--- /dev/null
+++ b/webkit/appcache/appcache_histograms.h
@@ -0,0 +1,21 @@
+// Copyright (c) 2010 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.
+
+#ifndef WEBKIT_APPCACHE_APPCACHE_HISTOGRAMS_H_
+#define WEBKIT_APPCACHE_APPCACHE_HISTOGRAMS_H_
+
+namespace appcache {
+
+class AppCacheHistograms {
+ public:
+ enum InitResultType {
+ INIT_OK, SQL_DATABASE_ERROR, DISK_CACHE_ERROR,
+ NUM_INIT_RESULT_TYPES
+ };
+ static void CountInitResult(InitResultType init_result);
+};
+
+} // namespace appcache
+
+#endif // WEBKIT_APPCACHE_APPCACHE_HISTOGRAMS_H_