There are command line flags (or "switches") that Chromium (and Chrome) accept in order to enable particular features or modify otherwise default functionality.
Current switches may be found at http://peter.sh/examples/?/chromium-switches.html It is important to note that using these switches is not supported or recommended. They should only be used for temporary cases and may break in the future.
To use a command line switch:
On Windows:
On OS X:/Applications/Chromium.app/Contents/MacOS/Chromium --remote-debugging-port=9222On Linux:chromium-browser --remote-debugging-port=9222Setting V8 FlagsV8 can take a number of flags as well, via Chrome's js-flags flag. For example, this traces V8 optimizations:chrome.exe --js-flags="--trace-opt --trace-deopt --trace-bailout" To get a listing of all possible V8 flags: chrome.exe --js-flags="--help" Browse the V8 wiki for more flags for V8. Setting Flags for Chrome on AndroidVisit ' about:version' to review the flags that are effective in the app. You can change these like so: adb shell 'echo "chrome <flags>" > /data/local/tmp/content-shell-command-line'Remember to quit the app completely and restart for flags to take effect.
|
