| 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() {}
|
|
|
|
|