| 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 "chrome/browser/sync/glue/generic_change_processor.h" | 5 #include "chrome/browser/sync/glue/generic_change_processor.h" |
| 6 | 6 |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
| 11 #include "chrome/browser/sync/glue/data_type_error_handler_mock.h" | 11 #include "components/sync_driver/data_type_error_handler_mock.h" |
| 12 #include "sync/api/fake_syncable_service.h" | 12 #include "sync/api/fake_syncable_service.h" |
| 13 #include "sync/api/sync_change.h" | 13 #include "sync/api/sync_change.h" |
| 14 #include "sync/api/sync_merge_result.h" | 14 #include "sync/api/sync_merge_result.h" |
| 15 #include "sync/internal_api/public/base/model_type.h" | 15 #include "sync/internal_api/public/base/model_type.h" |
| 16 #include "sync/internal_api/public/read_node.h" | 16 #include "sync/internal_api/public/read_node.h" |
| 17 #include "sync/internal_api/public/read_transaction.h" | 17 #include "sync/internal_api/public/read_transaction.h" |
| 18 #include "sync/internal_api/public/test/test_user_share.h" | 18 #include "sync/internal_api/public/test/test_user_share.h" |
| 19 #include "sync/internal_api/public/user_share.h" | 19 #include "sync/internal_api/public/user_share.h" |
| 20 #include "sync/internal_api/public/write_node.h" | 20 #include "sync/internal_api/public/write_node.h" |
| 21 #include "sync/internal_api/public/write_transaction.h" | 21 #include "sync/internal_api/public/write_transaction.h" |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 ASSERT_TRUE(raw_specifics.has_password()); | 234 ASSERT_TRUE(raw_specifics.has_password()); |
| 235 ASSERT_TRUE(raw_specifics.password().has_encrypted()); | 235 ASSERT_TRUE(raw_specifics.password().has_encrypted()); |
| 236 ASSERT_FALSE(raw_specifics.password().has_client_only_encrypted_data()); | 236 ASSERT_FALSE(raw_specifics.password().has_client_only_encrypted_data()); |
| 237 } | 237 } |
| 238 } | 238 } |
| 239 | 239 |
| 240 } // namespace | 240 } // namespace |
| 241 | 241 |
| 242 } // namespace browser_sync | 242 } // namespace browser_sync |
| 243 | 243 |
| OLD | NEW |