Use HTTPS links for Google domains in docs
Since almost all Google domains support HTTPS, and it is a good practice to
use HTTPS wherever possible, thus in this patch, I changed most HTTP links
to https whose domains are known to support HTTPS well.
Modifications are generated by running these commands in src/docs directory:
sed -i 's/https:\/\/ptop.only.wip.la:443\/http\/www.chromium.org/https:\/\/ptop.only.wip.la:443\/https\/www.chromium.org/g' *.md
sed -i 's/https:\/\/ptop.only.wip.la:443\/http\/developer.android.com/https:\/\/ptop.only.wip.la:443\/https\/developer.android.com/g' *.md
sed -i 's/https:\/\/ptop.only.wip.la:443\/http\/dev.chromium.org/https:\/\/ptop.only.wip.la:443\/https\/dev.chromium.org/g' *.md
sed -i 's/https:\/\/ptop.only.wip.la:443\/http\/build.chromium.org/https:\/\/ptop.only.wip.la:443\/https\/build.chromium.org/g' *.md
sed -i 's/https:\/\/ptop.only.wip.la:443\/http\/src.chromium.org/https:\/\/ptop.only.wip.la:443\/https\/src.chromium.org/g' *.md
sed -i 's/https:\/\/ptop.only.wip.la:443\/http\/crbug.com/https:\/\/ptop.only.wip.la:443\/https\/crbug.com/g' *.md
sed -i 's/https:\/\/ptop.only.wip.la:443\/http\/groups.google.com/https:\/\/ptop.only.wip.la:443\/https\/groups.google.com/g' *.md
sed -i 's/https:\/\/ptop.only.wip.la:443\/http\/cs.chromium.org/https:\/\/ptop.only.wip.la:443\/https\/cs.chromium.org/g' *.md
sed -i 's/https:\/\/ptop.only.wip.la:443\/http\/codereview.chromium.org/https:\/\/ptop.only.wip.la:443\/https\/codereview.chromium.org/g' *.md
BUG=
Review-Url: https://codereview.chromium.org/2545363002
Cr-Commit-Position: refs/heads/master@{#436501}
diff --git a/docs/android_build_instructions.md b/docs/android_build_instructions.md
index 22c7ef85..6244076d 100644
--- a/docs/android_build_instructions.md
+++ b/docs/android_build_instructions.md
@@ -223,7 +223,7 @@
### Build Content shell
Wraps the content module (but not the /chrome embedder). See
-[http://www.chromium.org/developers/content-module](http://www.chromium.org/developers/content-module)
+[https://www.chromium.org/developers/content-module](https://www.chromium.org/developers/content-module)
for details on the content module and content shell.
```shell
@@ -244,9 +244,9 @@
### Build WebView shell
-[Android WebView](http://developer.android.com/reference/android/webkit/WebView.html)
+[Android WebView](https://developer.android.com/reference/android/webkit/WebView.html)
is a system framework component. Since Android KitKat, it is implemented using
-Chromium code (based off the [content module](http://dev.chromium.org/developers/content-module)).
+Chromium code (based off the [content module](https://dev.chromium.org/developers/content-module)).
It is possible to test modifications to WebView using a simple test shell. The
WebView shell is a view with a URL bar at the top (see [code](https://code.google.com/p/chromium/codesearch#chromium/src/android_webview/test/shell/src/org/chromium/android_webview/test/AwTestContainerView.java))
and is **independent** of the WebView **implementation in the Android system** (
@@ -258,7 +258,7 @@
build/android/adb_install_apk.py out/Release/apks/AndroidWebView.apk
```
-If, instead, you want to build the complete Android WebView framework component and test the effect of your chromium changes in other Android app using the WebView, you should follow the [Android AOSP + chromium WebView instructions](http://www.chromium.org/developers/how-tos/build-instructions-android-webview)
+If, instead, you want to build the complete Android WebView framework component and test the effect of your chromium changes in other Android app using the WebView, you should follow the [Android AOSP + chromium WebView instructions](https://www.chromium.org/developers/how-tos/build-instructions-android-webview)
### Running
@@ -286,7 +286,7 @@
Logging is often the easiest way to understand code flow. In C++ you can print
log statements using the LOG macro or printf(). In Java, you can print log
-statements using [android.util.Log](http://developer.android.com/reference/android/util/Log.html):
+statements using [android.util.Log](https://developer.android.com/reference/android/util/Log.html):
`Log.d("sometag", "Reticulating splines progress = " + progress);`