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

Unified Diff: components/sync/engine/events/commit_response_event.cc

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 5 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
Index: components/sync/engine/events/commit_response_event.cc
diff --git a/sync/internal_api/events/commit_response_event.cc b/components/sync/engine/events/commit_response_event.cc
similarity index 84%
rename from sync/internal_api/events/commit_response_event.cc
rename to components/sync/engine/events/commit_response_event.cc
index 05d244ea7b16d9460bbc8fc3b7435f03da6e09a5..a0faacce1cfe5972470d217cc72df498322958c8 100644
--- a/sync/internal_api/events/commit_response_event.cc
+++ b/components/sync/engine/events/commit_response_event.cc
@@ -2,10 +2,10 @@
// 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/events/commit_response_event.h"
+#include "components/sync/engine/events/commit_response_event.h"
#include "base/strings/stringprintf.h"
-#include "sync/protocol/proto_value_conversions.h"
+#include "components/sync/protocol/proto_value_conversions.h"
namespace syncer {
@@ -13,9 +13,7 @@ CommitResponseEvent::CommitResponseEvent(
base::Time timestamp,
SyncerError result,
const sync_pb::ClientToServerResponse& response)
- : timestamp_(timestamp),
- result_(result),
- response_(response) {}
+ : timestamp_(timestamp), result_(result), response_(response) {}
CommitResponseEvent::~CommitResponseEvent() {}

Powered by Google App Engine
This is Rietveld 408576698