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

Side by Side Diff: components/sync/test/fake_server/android/fake_server_helper_android.cc

Issue 2387553002: [Sync] Removing duplicated includes between cc and h files. (Closed)
Patch Set: Fixing DataTypeStatusTable 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
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/test/fake_server/android/fake_server_helper_android.h" 5 #include "components/sync/test/fake_server/android/fake_server_helper_android.h"
6 6
7 #include <jni.h>
8 #include <stddef.h> 7 #include <stddef.h>
9 8
10 #include <memory> 9 #include <memory>
11 #include <set> 10 #include <set>
12 #include <vector> 11 #include <vector>
13 12
14 #include "base/android/jni_array.h" 13 #include "base/android/jni_array.h"
15 #include "base/android/jni_string.h" 14 #include "base/android/jni_string.h"
16 #include "base/logging.h" 15 #include "base/logging.h"
17 #include "components/sync/base/model_type.h" 16 #include "components/sync/base/model_type.h"
18 #include "components/sync/core/network_resources.h" 17 #include "components/sync/core/network_resources.h"
19 #include "components/sync/protocol/sync.pb.h" 18 #include "components/sync/protocol/sync.pb.h"
20 #include "components/sync/test/fake_server/bookmark_entity_builder.h" 19 #include "components/sync/test/fake_server/bookmark_entity_builder.h"
21 #include "components/sync/test/fake_server/entity_builder_factory.h"
22 #include "components/sync/test/fake_server/fake_server.h" 20 #include "components/sync/test/fake_server/fake_server.h"
23 #include "components/sync/test/fake_server/fake_server_network_resources.h" 21 #include "components/sync/test/fake_server/fake_server_network_resources.h"
24 #include "components/sync/test/fake_server/fake_server_verifier.h" 22 #include "components/sync/test/fake_server/fake_server_verifier.h"
25 #include "components/sync/test/fake_server/tombstone_entity.h" 23 #include "components/sync/test/fake_server/tombstone_entity.h"
26 #include "components/sync/test/fake_server/unique_client_entity.h" 24 #include "components/sync/test/fake_server/unique_client_entity.h"
27 #include "jni/FakeServerHelper_jni.h" 25 #include "jni/FakeServerHelper_jni.h"
28 #include "testing/gtest/include/gtest/gtest.h" 26 #include "testing/gtest/include/gtest/gtest.h"
29 #include "url/gurl.h" 27 #include "url/gurl.h"
30 28
31 using base::android::JavaParamRef; 29 using base::android::JavaParamRef;
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 jlong fake_server) { 307 jlong fake_server) {
310 fake_server::FakeServer* fake_server_ptr = 308 fake_server::FakeServer* fake_server_ptr =
311 reinterpret_cast<fake_server::FakeServer*>(fake_server); 309 reinterpret_cast<fake_server::FakeServer*>(fake_server);
312 fake_server_ptr->ClearServerData(); 310 fake_server_ptr->ClearServerData();
313 } 311 }
314 312
315 // static 313 // static
316 bool FakeServerHelperAndroid::Register(JNIEnv* env) { 314 bool FakeServerHelperAndroid::Register(JNIEnv* env) {
317 return RegisterNativesImpl(env); 315 return RegisterNativesImpl(env);
318 } 316 }
OLDNEW
« no previous file with comments | « components/sync/test/engine/test_directory_setter_upper.cc ('k') | components/sync/test/fake_server/bookmark_entity.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698