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

Unified Diff: android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java

Issue 2776073002: Workaround for Samsung email issues (Closed)
Patch Set: add a comment to web_preferences.h Created 3 years, 8 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
« no previous file with comments | « android_webview/native/aw_settings.cc ('k') | content/public/common/common_param_traits_macros.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java
index 36f6748ef2a1ab0d58584548d3fc696b3c723241..b899420a4d13c4ecd42eefedfcaef5559ebb4bbe 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellActivity.java
@@ -171,10 +171,11 @@ public class AwShellActivity extends Activity {
if (mBrowserContext == null) {
mBrowserContext = new AwBrowserContext(sharedPreferences, getApplicationContext());
}
- final AwSettings awSettings = new AwSettings(this /* context */,
- false /* isAccessFromFileURLsGrantedByDefault */, false /* supportsLegacyQuirks */,
- false /* allowEmptyDocumentPersistence */,
- true /* allowGeolocationOnInsecureOrigins */);
+ final AwSettings awSettings =
+ new AwSettings(this /* context */, false /* isAccessFromFileURLsGrantedByDefault */,
+ false /* supportsLegacyQuirks */, false /* allowEmptyDocumentPersistence */,
+ true /* allowGeolocationOnInsecureOrigins */,
+ false /* doNotUpdateSelectionOnMutatingSelectionRange */);
// Required for WebGL conformance tests.
awSettings.setMediaPlaybackRequiresUserGesture(false);
// Allow zoom and fit contents to screen
« no previous file with comments | « android_webview/native/aw_settings.cc ('k') | content/public/common/common_param_traits_macros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698