Auto-Submit | +1 |
Commit-Queue | +1 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Commit-Queue | +2 |
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
1 is the latest approved patch-set.
The change was submitted with unreviewed changes in the following files:
```
The name of the file: chrome/android/java/src/org/chromium/chrome/browser/app/tabmodel/TabbedModeTabModelOrchestrator.java
Insertions: 5, Deletions: 0.
@@ -11,6 +11,7 @@
import androidx.annotation.VisibleForTesting;
+import org.chromium.base.Log;
import org.chromium.base.ThreadUtils;
import org.chromium.base.supplier.OneshotSupplier;
import org.chromium.build.annotations.Initializer;
@@ -50,6 +51,8 @@
*/
@NullMarked
public class TabbedModeTabModelOrchestrator extends TabModelOrchestrator {
+ private static final String TAG = "TMTMOrchestrator";
+
private final boolean mTabMergingEnabled;
private final ActivityLifecycleDispatcher mActivityLifecycleDispatcher;
private final CipherFactory mCipherFactory;
@@ -237,6 +240,8 @@
ChromeFeatureList.TAB_STORAGE_SQLITE_PROTOTYPE,
"authoritative_read_source",
false);
+ // Temporary variable usage to avoid unused variable warning.
+ Log.i(TAG, "mTabStateStoreIsAuthoritative: " + mTabStateStoreIsAuthoritative);
assert mProfileProviderSupplier.get() != null;
ProfileProvider profileProvider = mProfileProviderSupplier.get();
```
[Tab Storage] Create feature param for authoritative read source
Create a feature param to control the authoritative read source for
tab state on startup.
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |