| Index: customtabs/src/android/support/customtabs/CustomTabsCallback.java
|
| diff --git a/customtabs/src/android/support/customtabs/CustomTabsCallback.java b/customtabs/src/android/support/customtabs/CustomTabsCallback.java
|
| index 261fc870e30196ca2c9036eea9886210d359b04e..0f3f40ac626e20e5d34cf938b793b907d7d3df7b 100644
|
| --- a/customtabs/src/android/support/customtabs/CustomTabsCallback.java
|
| +++ b/customtabs/src/android/support/customtabs/CustomTabsCallback.java
|
| @@ -19,6 +19,8 @@ package android.support.customtabs;
|
| import android.net.Uri;
|
| import android.os.Bundle;
|
|
|
| +import org.chromium.base.annotations.SuppressFBWarnings;
|
| +
|
| /**
|
| * A callback class for custom tabs client to get messages regarding events in their custom tabs. In
|
| * the implementation, all callbacks are sent to the UI thread for the client.
|
| @@ -71,6 +73,7 @@ public class CustomTabsCallback {
|
| * from this {@link CustomTabsSession}.
|
| * @param extras Reserved for future use.
|
| */
|
| + @SuppressFBWarnings("CHROMIUM_SYNCHRONIZED_METHOD")
|
| public synchronized void onMessageChannelReady(Uri origin, Bundle extras) {}
|
|
|
| /**
|
| @@ -82,6 +85,7 @@ public class CustomTabsCallback {
|
| * @param message The message sent.
|
| * @param extras Reserved for future use.
|
| */
|
| + @SuppressFBWarnings("CHROMIUM_SYNCHRONIZED_METHOD")
|
| public synchronized void onPostMessage(String message, Bundle extras) {}
|
|
|
| /**
|
|
|