summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkhushalsagar <khushalsagar@chromium.org>2016-03-22 16:02:37 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-22 23:03:48 +0000
commita612bb87ff57998506b7de1bf2a1c6b885cadd6a (patch)
treed7d437056e222e4a068e25d9c31896c912222a3d
parent60a702cce038f3acd793496b9dabc792e28fc912 (diff)
downloadchromium_src-a612bb87ff57998506b7de1bf2a1c6b885cadd6a.zip
chromium_src-a612bb87ff57998506b7de1bf2a1c6b885cadd6a.tar.gz
chromium_src-a612bb87ff57998506b7de1bf2a1c6b885cadd6a.tar.bz2
blimp: Disable custom web fonts on the engine
BUG=593180 Review URL: https://codereview.chromium.org/1818253003 Cr-Commit-Position: refs/heads/master@{#382721}
-rw-r--r--blimp/docs/running.md2
-rwxr-xr-xblimp/engine/start_engine.sh1
2 files changed, 3 insertions, 0 deletions
diff --git a/blimp/docs/running.md b/blimp/docs/running.md
index bb92199..9d640e1 100644
--- a/blimp/docs/running.md
+++ b/blimp/docs/running.md
@@ -102,6 +102,8 @@ also start a new shell and keep the following command running:
destroyed before serialization.
* `--android-fonts-path=$PATH`: Path to where the fonts are located.
Typically this would be `out-linux/Debug/gen/third_party/blimp_fonts`.
+* `--disable-remote-fonts`: Disables downloading of custom web fonts in the
+ renderer.
#### Typical invocation
When the client connects to a manually specified engine instead of using the
diff --git a/blimp/engine/start_engine.sh b/blimp/engine/start_engine.sh
index a9cf193..519f317 100755
--- a/blimp/engine/start_engine.sh
+++ b/blimp/engine/start_engine.sh
@@ -14,6 +14,7 @@ LD_LIBRARY_PATH=/engine/ /engine/blimp_engine_app \
--disable-cached-picture-raster \
--blimp-client-token-path=/engine/data/client_token \
--android-fonts-path=/engine/fonts \
+ --disable-remote-fonts \
$@ &
# Stop execution if either stunnel or blimp_engine_app die.