Questions tagged [webviewchromium]
44 questions
2
votes
0 answers
What exactly does disablewebsecurity do when used with a or Chrome/Chromium?
I'm interested in understanding exactly what the attribute disablewebsecurity does when used with a webview element like this:
I have an electron app that is a wrapper around a web app, and were…

jamis0n
- 3,610
- 8
- 34
- 50
2
votes
1 answer
how to enable and take WTF_LOG in chromium[Android]
I have seen any logs written in WTF_LOG(Media,...) in chrome code. after lot of code search I didn't any way to enable and take these logs for android platform,
I find a useful link on chromium official site, but there is not information for android…

dead programmer
- 4,223
- 9
- 46
- 77
2
votes
1 answer
How to build and run tests against Chromium based WebView on KitKat
Kitkat uses chromium based webview, and directory "external/chromium_org" contains code of chromium.
There are integration tests for android webview in the directory:
"external/chromium_org/android_webview/javatests".
I have read the wiki…

user3060569
- 21
- 1
- 2
1
vote
0 answers
Session cookies are not always sent to server in Android Webview
I am working on an ionic app using the in-app-browser plugin to open an embedded webview.
The URL displayed in the webview replies with a "set-cookie" to start a new session, and redirects to a new url that loads the app. All this works fine.
The…

Multicolaure
- 864
- 8
- 15
1
vote
0 answers
Chromium extension Preinstall
I want to pre-install the extension on a Chromium browser, but I don't know how to pre-install it because the official documentation is old or the information on the new one is old. Can somebody tell me?
I thought Chrome \ Browser \ resource \…

Surapunoyousei
- 11
- 2
1
vote
0 answers
How to create custom Android WebView that can be set at android system level?
I have some idea on creating Android WebView with custom behavior:
https://www.chromium.org/developers/androidwebview/android-webview-beta
How can i create my WebView that can be set as default at system level by users? It seems that this is about…

4ntoine
- 19,816
- 21
- 96
- 220
1
vote
1 answer
Execute JavaScript function from Android WebView
I have been trying to call a JavaScript function called showMenu(); from an Android WebView. However, I have tried what many articles on StackOverflow say about doing
webview.loadURL("javascript:showMenu()");
and it shows this in the console:…

FrankFabregat2
- 165
- 1
- 1
- 10
1
vote
1 answer
Getting error while fetching chromium source code
I followed the instructions given on the link https://chromium.googlesource.com/chromium/src/+/master/docs/windows_build_instructions.md
and tried with different fetch commands such as --no-history,nohooks,etc.
But it keeps on failing with the…

Jaywant Kamble
- 11
- 3
1
vote
1 answer
SIGSEGV SEGV_MAPERR 0x00000000fbadbeef in libwebviewchromium.so
I've been getting some crashes in my app out in the field an one crash that I received is very interesting in nature. For one of the crashes happening the service I am using is reporting a SIGSEGV SEGV_MAPERR in libwebviewchromium.so and the only…

Dom
- 1,687
- 6
- 27
- 37
1
vote
0 answers
Android HTML5 playback
Can someone explain me how works html video playback on Android OS? I'm interested in low level.. Which player invokes html stremaing? Is that part of chromium project? How to gain access to that player?
Or at least point me to some useful…

Steva
- 231
- 4
- 16
1
vote
0 answers
Javascript changes the html content but the WebView doesn't update itself
The html bellow is loaded on a WebView.
In a specific moment, the javascript function toggleLayer() is called and changes the attribute 'display' of the internal div's to switch between 'expanded' and 'normal' layers.
This works fine until the…

lpmfilho
- 178
- 6
1
vote
1 answer
Blocked proxy response with status 403 to CONNECT in WebClient
I am trying to perform a request in HTTPS through a WebClient in Android. It runs currently a on Galaxy Tab 2 (Android 4.2) and the application is Android 4.0.3 (API 15).
HTTPS requests work well on a WiFi connection but they are incredibly slow on…

ThatChrisGuy
- 559
- 2
- 7
- 23
1
vote
0 answers
Unable to resolved AIDL issue in Chromium Content Shell source code
I have complete build for Android Content shell from this link AndroidBuildInstructions.
after that i want to make Eclipse project from it and i follow this link code of Chromium for Android.
But when i add all required java classes and required…

Herry
- 7,037
- 7
- 50
- 80
0
votes
0 answers
Missing chromium dependencies when trying to use androix.webkit.ProxyController
I'm trying to build and run an Android application that uses androidx.webkit.ProxyController class. After initializing a ProxyController using ProxyController.getInstance(), at some point it tries to load dynamically…
0
votes
1 answer
c# How to get all row value from cefsharp chromium browser?
I can take a table's first row's td values from cefsharp chromiumwebbrowser with this code but I need all rows value. How to get each rows value? Thanks for answer.
private void GetTable ()
{
const string script = @"(function(){
let table =…