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

Side by Side Diff: components/sync/model/sync_data_unittest.cc

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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 unified diff | Download patch
« no previous file with comments | « components/sync/model/sync_data.cc ('k') | components/sync/model/sync_error.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/api/sync_data.h" 5 #include "components/sync/model/sync_data.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "base/memory/ref_counted_memory.h" 9 #include "base/memory/ref_counted_memory.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/threading/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 #include "components/sync/api/attachments/attachment_service.h" 12 #include "components/sync/model/attachments/attachment_service.h"
13 #include "components/sync/protocol/sync.pb.h" 13 #include "components/sync/protocol/sync.pb.h"
14 #include "testing/gtest/include/gtest/gtest.h" 14 #include "testing/gtest/include/gtest/gtest.h"
15 15
16 using std::string; 16 using std::string;
17 17
18 namespace syncer { 18 namespace syncer {
19 19
20 namespace { 20 namespace {
21 21
22 const char kSyncTag[] = "3984729834"; 22 const char kSyncTag[] = "3984729834";
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 EXPECT_TRUE(data.GetSpecifics().has_preference()); 110 EXPECT_TRUE(data.GetSpecifics().has_preference());
111 EXPECT_TRUE(data.GetAttachmentIds().empty()); 111 EXPECT_TRUE(data.GetAttachmentIds().empty());
112 } 112 }
113 113
114 // TODO(maniscalco): Add test cases that verify GetLocalAttachmentsForUpload 114 // TODO(maniscalco): Add test cases that verify GetLocalAttachmentsForUpload
115 // calls are passed through to the underlying AttachmentService. 115 // calls are passed through to the underlying AttachmentService.
116 116
117 } // namespace 117 } // namespace
118 118
119 } // namespace syncer 119 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/model/sync_data.cc ('k') | components/sync/model/sync_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698