OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
sky
2014/08/12 19:49:29
nit: you've got an extra space here.
Kibeom Kim (inactive)
2014/08/12 22:33:48
Done.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
sky
2014/08/12 19:49:28
Do we typically not use header guards for these fi
Yaron
2014/08/12 20:15:49
It should be there
Kibeom Kim (inactive)
2014/08/12 22:33:48
Done.
| |
5 #include <jni.h> | |
6 | |
7 namespace bookmarks { | |
8 namespace android { | |
sky
2014/08/12 19:49:28
Do we typically introduce namespaces for android s
Yaron
2014/08/12 20:15:48
I think it's fairly inconsistent :(
| |
9 | |
10 // See BookmarkId#getId | |
11 long JavaBookmarkIdGetId(JNIEnv* env, jobject obj); | |
12 | |
13 // See BookmarkId#getType | |
14 int JavaBookmarkIdGetType(JNIEnv* env, jobject obj); | |
15 | |
16 bool RegisterBookmarkId(JNIEnv* env); | |
17 | |
18 } // namespace android | |
19 } // namespace bookmarks | |
OLD | NEW |