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

Side by Side Diff: third_party/android_customtabs/customtabs/api/current.txt

Issue 1224553003: customtabs: Convert to the new AIDL interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update to external patch #16, rebase and update constants. Created 5 years, 5 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 package android.support.customtabs {
2 public class CustomTabsCallback {
3 method public void onUserNavigationStarted(String, android.os.Bundle);
4 method public void onUserNavigationFinished(String, android.os.Bundle);
5 }
6
7 public class CustomTabsIntent {
8 field public static final String EXTRA_SESSION = "android.support.customtabs .extra.SESSION";
9 field public static final String EXTRA_TOOLBAR_COLOR = "android.support.cust omtabs.extra.TOOLBAR_COLOR";
10 field public static final String EXTRA_ACTION_BUTTON_BUNDLE = "android.suppo rt.customtabs.extra.ACTION_BUTTON_BUNDLE";
11 field public static final String KEY_ICON = "android.support.customtabs.cust omaction.ICON";
12 field public static final String KEY_PENDING_INTENT = "android.support.custo mtabs.customaction.PENDING_INTENT";
13 field public static final String EXTRA_MENU_ITEMS = "android.support.customt abs.extra.MENU_ITEMS";
14 field public static final String KEY_MENU_ITEM_TITLE = "android.support.cust omtabs.customaction.MENU_ITEM_TITLE";
15 field public static final String EXTRA_EXIT_ANIMATION_BUNDLE = "android.supp ort.customtabs.extra.EXIT_ANIMATION_BUNDLE";
16 }
17
18 public abstract class CustomTabsService exrends android.app.Service {
pasko 2015/07/09 13:37:13 extends?
19 field public static final String ACTION_CUSTOM_TABS_CONNECTION = "android.su pport.customtabs.action.CustomTabsService";
20 field public static final String KEY_URL = "android.support.customtabs.other urls.URL";
21 method public abstract boolean warmup(long);
22 method public abstract boolean newSession(android.support.customtabs.ICustom TabsCallback);
23 method abstract boolean mayLaunchUrl(android.support.customtabs.ICustomTabsC allback, android.net.Uri, android.os.Bundle, List<android.os.Bundle>);
24 }
25
26 public class CustomTabsSession {
27 method public static boolean bindService(android.content.Context, String, an droid.content.ServiceConnection);
28 method public static android.support.customtabs.CustomTabsSession newSession (android.support.customtabs.ICustomTabsService, final android.support.customtabs .CustomTabsCallback);
29 method public boolean warmup(int);
30 method public boolean mayLaunchUrl(android.support.customtabs.ICustomTabsCal lback, android.net.Uri, android.os.Bundle, List<android.os.Bundle>);
31 method public android.content.Intent getIntentForSession(String);
32 }
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698