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

Side by Side Diff: base/test/android/jni_test_util.h

Issue 2735113003: Changing SpawnChild to return a struct.
Patch Set: Created 3 years, 9 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <vector>
6
7 #include "base/android/scoped_java_ref.h"
8
9 namespace base {
10 namespace android {
11 namespace test {
12
13 // Returns an android.graphics.Point instance. The Point class is parcelable and
14 // useful for testing sending Parcelable objects over Mojo channels .
15 ScopedJavaLocalRef<jobject> CreateJavaPoint(jint x, jint y);
16
17 bool AreJavaObjectsEqual(jobject object1, jobject object2);
18
19 } // namespace test
20 } // namespace android
21 } // namespace base
OLDNEW
« no previous file with comments | « base/test/android/java/src/org/chromium/base/MultiprocessTestClientService.java ('k') | base/test/android/jni_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698