blob: c227b827d0fa1b4994bca3ec9f553c0aa6a7fcec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
|