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

Side by Side Diff: components/bookmarks/common/android/bookmark_id.h

Issue 459973004: [Android] EnhancedBookmarksBridge for bookmark description read&write. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added back missing bookmark_type_list.h bookmark_type.h Created 6 years, 4 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 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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698