New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 781401 link

Starred by 2 users

Issue metadata

Status: Assigned
Owner:
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: Android
Pri: 1
Type: Feature



Sign in to add a comment

Allow Android payment apps to specify default incognito behavior for IS_READY_TO_PAY

Project Member Reported by rouslan@chromium.org, Nov 3 2017

Issue description

Currently Chrome in incognito mode does not fire IS_READY_TO_PAY intent and assumes that the Android payment app returned "true", thus making it available to the user. For some apps, this behavior is not desirable. Therefore, it would be great to let apps specify the default behavior in incognito mode. This can be accomplished by adding a <meta> tag in AndroidManifest.xml:

<service android:name=".IsReadyToPayService"
         android:enabled="true"
         android:exported="true">
  <intent-filter>
    <action android:name="org.chromium.intent.action.IS_READY_TO_PAY" />
  </intent-filter>
  <meta-data android:name="org.chromium.incognito_value"
             android:value="false" />
</service>


 

Comment 1 by battre@chromium.org, Nov 16 2017

Components: Privacy
Please be sure to discuss this with the privacy team before starting an implementation.

Sign in to add a comment