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

Unified Diff: chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java

Issue 1234643002: customtabs: Convert to the new AIDL interface, temporarily imported. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added VisibleForTesting to util only used for testing 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java
index e3bc80b8f455c1997b01cc0f8a7a6645e6d30c8e..0bf663efac9a51255aeaced51707f76d7b2c1212 100644
--- a/chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/customtabs/CustomTabActivityTest.java
@@ -15,6 +15,7 @@ import android.graphics.Color;
import android.graphics.drawable.BitmapDrawable;
import android.os.Build;
import android.os.Bundle;
+import android.support.customtabs.CustomTabsIntent;
import android.test.suitebuilder.annotation.SmallTest;
import android.view.Menu;
import android.view.MenuItem;
@@ -96,17 +97,16 @@ public class CustomTabActivityTest extends CustomTabActivityTestBase {
PendingIntent pi = PendingIntent.getBroadcast(getInstrumentation().getTargetContext(), 0,
menuIntent, 0);
Bundle bundle = new Bundle();
- bundle.putString(CustomTabIntentDataProvider.KEY_CUSTOM_TABS_MENU_TITLE, TEST_MENU_TITLE);
- bundle.putParcelable(CustomTabIntentDataProvider.KEY_CUSTOM_TABS_PENDING_INTENT, pi);
+ bundle.putString(CustomTabsIntent.KEY_MENU_ITEM_TITLE, TEST_MENU_TITLE);
+ bundle.putParcelable(CustomTabsIntent.KEY_PENDING_INTENT, pi);
ArrayList<Bundle> menuItems = new ArrayList<Bundle>();
menuItems.add(bundle);
- intent.putParcelableArrayListExtra(CustomTabIntentDataProvider.EXTRA_CUSTOM_TABS_MENU_ITEMS,
- menuItems);
+ intent.putParcelableArrayListExtra(CustomTabsIntent.EXTRA_MENU_ITEMS, menuItems);
return pi;
}
private void addToolbarColorToIntent(Intent intent, int color) {
- intent.putExtra(CustomTabIntentDataProvider.EXTRA_CUSTOM_TABS_TOOLBAR_COLOR, color);
+ intent.putExtra(CustomTabsIntent.EXTRA_TOOLBAR_COLOR, color);
}
/**
@@ -119,12 +119,12 @@ public class CustomTabActivityTest extends CustomTabActivityTestBase {
actionIntent.setAction(TEST_ACTION);
Bundle bundle = new Bundle();
- bundle.putParcelable(CustomTabIntentDataProvider.KEY_CUSTOM_TABS_ICON, icon);
+ bundle.putParcelable(CustomTabsIntent.KEY_ICON, icon);
PendingIntent pi = PendingIntent.getBroadcast(getInstrumentation().getTargetContext(), 0,
actionIntent, 0);
- bundle.putParcelable(CustomTabIntentDataProvider.KEY_CUSTOM_TABS_PENDING_INTENT, pi);
+ bundle.putParcelable(CustomTabsIntent.KEY_PENDING_INTENT, pi);
- intent.putExtra(CustomTabIntentDataProvider.EXTRA_CUSTOM_TABS_ACTION_BUTTON_BUNDLE, bundle);
+ intent.putExtra(CustomTabsIntent.EXTRA_ACTION_BUTTON_BUNDLE, bundle);
return pi;
}

Powered by Google App Engine
This is Rietveld 408576698