diff options
Diffstat (limited to 'sync/sessions/error_counters.cc')
-rw-r--r-- | sync/sessions/error_counters.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sync/sessions/error_counters.cc b/sync/sessions/error_counters.cc new file mode 100644 index 0000000..c227b82 --- /dev/null +++ b/sync/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/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 |