| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/sync_sessions/favicon_cache.h" | 5 #include "components/sync_sessions/favicon_cache.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "base/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/run_loop.h" | 9 #include "base/run_loop.h" |
| 10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
| 11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
| 12 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
| 13 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 14 #include "components/sync/api/attachments/attachment_id.h" | 14 #include "components/sync/model/attachments/attachment_id.h" |
| 15 #include "components/sync/api/attachments/attachment_service_proxy_for_test.h" | 15 #include "components/sync/model/attachments/attachment_service_proxy_for_test.h" |
| 16 #include "components/sync/api/sync_change_processor_wrapper_for_test.h" | 16 #include "components/sync/model/sync_change_processor_wrapper_for_test.h" |
| 17 #include "components/sync/api/sync_error_factory_mock.h" | 17 #include "components/sync/model/sync_error_factory_mock.h" |
| 18 #include "components/sync/api/time.h" | 18 #include "components/sync/model/time.h" |
| 19 #include "components/sync/protocol/favicon_image_specifics.pb.h" | 19 #include "components/sync/protocol/favicon_image_specifics.pb.h" |
| 20 #include "components/sync/protocol/favicon_tracking_specifics.pb.h" | 20 #include "components/sync/protocol/favicon_tracking_specifics.pb.h" |
| 21 #include "components/sync/protocol/sync.pb.h" | 21 #include "components/sync/protocol/sync.pb.h" |
| 22 #include "testing/gtest/include/gtest/gtest.h" | 22 #include "testing/gtest/include/gtest/gtest.h" |
| 23 | 23 |
| 24 namespace sync_sessions { | 24 namespace sync_sessions { |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| 27 | 27 |
| 28 // Total number of favicons to use in sync test batches. | 28 // Total number of favicons to use in sync test batches. |
| (...skipping 1896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1925 EXPECT_EQ(changes[4].change_type(), syncer::SyncChange::ACTION_ADD); | 1925 EXPECT_EQ(changes[4].change_type(), syncer::SyncChange::ACTION_ADD); |
| 1926 EXPECT_EQ(changes[4].sync_data().GetDataType(), syncer::FAVICON_TRACKING); | 1926 EXPECT_EQ(changes[4].sync_data().GetDataType(), syncer::FAVICON_TRACKING); |
| 1927 EXPECT_EQ(kMaxSyncFavicons, GetFaviconId(changes[4])); | 1927 EXPECT_EQ(kMaxSyncFavicons, GetFaviconId(changes[4])); |
| 1928 // Expire tracking for favicon[0]. | 1928 // Expire tracking for favicon[0]. |
| 1929 EXPECT_EQ(changes[5].change_type(), syncer::SyncChange::ACTION_DELETE); | 1929 EXPECT_EQ(changes[5].change_type(), syncer::SyncChange::ACTION_DELETE); |
| 1930 EXPECT_EQ(changes[5].sync_data().GetDataType(), syncer::FAVICON_TRACKING); | 1930 EXPECT_EQ(changes[5].sync_data().GetDataType(), syncer::FAVICON_TRACKING); |
| 1931 EXPECT_EQ(0, GetFaviconId(changes[5])); | 1931 EXPECT_EQ(0, GetFaviconId(changes[5])); |
| 1932 } | 1932 } |
| 1933 | 1933 |
| 1934 } // namespace sync_sessions | 1934 } // namespace sync_sessions |
| OLD | NEW |