Chrome 65はシークレットモードでスクリーンショットを許可しません
Chrome for Android バージョン65では、シークレットモードでスクリーンショットを撮ることができない「機能」が導入されたようです。 スクリーンショットを撮ろうとすると、Androidは「スクリーンショットを撮ることはアプリまたは組織によって許可されていません」という警告を表示するようになりました。 /** * Sets the attributes flags to secure if there is an incognito tab visible. */ @VisibleForTesting void updateIncognitoState() { WindowManager.LayoutParams attributes = mWindow.getAttributes(); boolean currentSecureState = (attributes.flags & WindowManager.LayoutParams.FLAG_SECURE) == WindowManager.LayoutParams.FLAG_SECURE; boolean expectedSecureState = isShowingIncognito(); if (currentSecureState == expectedSecureState) return; if (expectedSecureState) { mWindow.addFlags(WindowManager.LayoutParams.FLAG_SECURE); …