summaryrefslogtreecommitdiffstats
path: root/sync/internal_api/public/sessions/error_counters.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sync/internal_api/public/sessions/error_counters.cc')
-rw-r--r--sync/internal_api/public/sessions/error_counters.cc17
1 files changed, 17 insertions, 0 deletions
diff --git a/sync/internal_api/public/sessions/error_counters.cc b/sync/internal_api/public/sessions/error_counters.cc
new file mode 100644
index 0000000..72ed2d1
--- /dev/null
+++ b/sync/internal_api/public/sessions/error_counters.cc
@@ -0,0 +1,17 @@
+// Copyright (c) 2012 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 "sync/internal_api/public/sessions/error_counters.h"
+
+namespace browser_sync {
+namespace sessions {
+
+ErrorCounters::ErrorCounters()
+ : last_download_updates_result(UNSET),
+ last_post_commit_result(UNSET),
+ last_process_commit_response_result(UNSET) {
+}
+
+} // namespace sessions
+} // namespace browser_sync