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

Unified Diff: components/sync/engine/events/get_updates_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/get_updates_response_event.cc
diff --git a/sync/internal_api/events/get_updates_response_event.cc b/components/sync/engine/events/get_updates_response_event.cc
similarity index 82%
rename from sync/internal_api/events/get_updates_response_event.cc
rename to components/sync/engine/events/get_updates_response_event.cc
index 9fa4989c20c7f1372ab12bd8dcd3338f406c41a4..a91b7b9d3cfdedfb42c08c78a1a52a254a428e1c 100644
--- a/sync/internal_api/events/get_updates_response_event.cc
+++ b/components/sync/engine/events/get_updates_response_event.cc
@@ -2,21 +2,18 @@
// 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/get_updates_response_event.h"
+#include "components/sync/engine/events/get_updates_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 {
GetUpdatesResponseEvent::GetUpdatesResponseEvent(
- base::Time timestamp,
- const sync_pb::ClientToServerResponse& response,
- SyncerError error)
- : timestamp_(timestamp),
- response_(response),
- error_(error) {
-}
+ base::Time timestamp,
+ const sync_pb::ClientToServerResponse& response,
+ SyncerError error)
+ : timestamp_(timestamp), response_(response), error_(error) {}
GetUpdatesResponseEvent::~GetUpdatesResponseEvent() {}

Powered by Google App Engine
This is Rietveld 408576698