Index: components/sync/core_impl/protocol_event_buffer_unittest.cc |
diff --git a/sync/internal_api/protocol_event_buffer_unittest.cc b/components/sync/core_impl/protocol_event_buffer_unittest.cc |
similarity index 84% |
rename from sync/internal_api/protocol_event_buffer_unittest.cc |
rename to components/sync/core_impl/protocol_event_buffer_unittest.cc |
index 6557de9cb531f44265deb4ac5f34641b8afd529d..0f187198e6410ad109f1485b51fc567084a67efd 100644 |
--- a/sync/internal_api/protocol_event_buffer_unittest.cc |
+++ b/components/sync/core_impl/protocol_event_buffer_unittest.cc |
@@ -2,7 +2,7 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include "sync/internal_api/protocol_event_buffer.h" |
+#include "components/sync/core_impl/protocol_event_buffer.h" |
#include <stddef.h> |
#include <stdint.h> |
@@ -11,9 +11,9 @@ |
#include "base/memory/scoped_vector.h" |
#include "base/time/time.h" |
-#include "sync/internal_api/public/events/poll_get_updates_request_event.h" |
-#include "sync/internal_api/public/events/protocol_event.h" |
-#include "sync/protocol/sync.pb.h" |
+#include "components/sync/engine/events/poll_get_updates_request_event.h" |
+#include "components/sync/engine/events/protocol_event.h" |
+#include "components/sync/protocol/sync.pb.h" |
#include "testing/gtest/include/gtest/gtest.h" |
namespace syncer { |
@@ -61,7 +61,7 @@ TEST_F(ProtocolEventBufferTest, AddThenReturnEvents) { |
} |
TEST_F(ProtocolEventBufferTest, AddThenOverflowThenReturnEvents) { |
- for (size_t i = 0; i < ProtocolEventBuffer::kBufferSize+1; ++i) { |
+ for (size_t i = 0; i < ProtocolEventBuffer::kBufferSize + 1; ++i) { |
std::unique_ptr<ProtocolEvent> e(MakeTestEvent(static_cast<int64_t>(i))); |
buffer_.RecordProtocolEvent(*e); |
} |
@@ -70,10 +70,9 @@ TEST_F(ProtocolEventBufferTest, AddThenOverflowThenReturnEvents) { |
buffer_.GetBufferedProtocolEvents()); |
ASSERT_EQ(ProtocolEventBuffer::kBufferSize, buffered_events.size()); |
- for (size_t i = 1; i < ProtocolEventBuffer::kBufferSize+1; ++i) { |
+ for (size_t i = 1; i < ProtocolEventBuffer::kBufferSize + 1; ++i) { |
EXPECT_TRUE(HasId(*(buffered_events[i - 1]), static_cast<int64_t>(i))); |
} |
} |
- |
} // namespace syncer |