Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Unified Diff: components/sync/sessions/model_neutral_state.cc

Issue 2258873003: [Sync] Move sessions/ to engine/cycle/ and rename things to match. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/sync/sessions/model_neutral_state.h ('k') | components/sync/sessions/status_counters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/sessions/model_neutral_state.cc
diff --git a/components/sync/sessions/model_neutral_state.cc b/components/sync/sessions/model_neutral_state.cc
deleted file mode 100644
index 6b8f7d8f770e3117c578be58c236f2ca86362591..0000000000000000000000000000000000000000
--- a/components/sync/sessions/model_neutral_state.cc
+++ /dev/null
@@ -1,40 +0,0 @@
-// 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 "components/sync/sessions/model_neutral_state.h"
-
-namespace syncer {
-namespace sessions {
-
-ModelNeutralState::ModelNeutralState()
- : num_successful_commits(0),
- num_successful_bookmark_commits(0),
- num_updates_downloaded_total(0),
- num_tombstone_updates_downloaded_total(0),
- num_reflected_updates_downloaded_total(0),
- num_updates_applied(0),
- num_encryption_conflicts(0),
- num_server_conflicts(0),
- num_hierarchy_conflicts(0),
- num_local_overwrites(0),
- num_server_overwrites(0),
- last_get_key_result(UNSET),
- last_download_updates_result(UNSET),
- commit_result(UNSET),
- items_committed(false) {}
-
-ModelNeutralState::ModelNeutralState(const ModelNeutralState& other) = default;
-
-ModelNeutralState::~ModelNeutralState() {}
-
-bool HasSyncerError(const ModelNeutralState& state) {
- const bool get_key_error = SyncerErrorIsError(state.last_get_key_result);
- const bool download_updates_error =
- SyncerErrorIsError(state.last_download_updates_result);
- const bool commit_error = SyncerErrorIsError(state.commit_result);
- return get_key_error || download_updates_error || commit_error;
-}
-
-} // namespace sessions
-} // namespace syncer
« no previous file with comments | « components/sync/sessions/model_neutral_state.h ('k') | components/sync/sessions/status_counters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698