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

Unified Diff: components/sync/core_impl/protocol_event_buffer_unittest.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/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
« no previous file with comments | « components/sync/core_impl/protocol_event_buffer.cc ('k') | components/sync/core_impl/sync_encryption_handler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698