X Tutup
Skip to content

Commit ecd23bb

Browse files
authored
docs: tidy up links (electron#26292)
1 parent d16e61d commit ecd23bb

19 files changed

+27
-27
lines changed

docs/api/app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ Activation policy types:
11051105

11061106
Imports the certificate in pkcs12 format into the platform certificate store.
11071107
`callback` is called with the `result` of import operation, a value of `0`
1108-
indicates success while any other value indicates failure according to Chromium [net_error_list](https://code.google.com/p/chromium/codesearch#chromium/src/net/base/net_error_list.h).
1108+
indicates success while any other value indicates failure according to Chromium [net_error_list](https://source.chromium.org/chromium/chromium/src/+/master:net/base/net_error_list.h).
11091109

11101110
### `app.disableHardwareAcceleration()`
11111111

docs/api/frameless-window.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ win.show()
8888
* On Linux, users have to put `--enable-transparent-visuals --disable-gpu` in
8989
the command line to disable GPU and allow ARGB to make transparent window,
9090
this is caused by an upstream bug that [alpha channel doesn't work on some
91-
NVidia drivers](https://code.google.com/p/chromium/issues/detail?id=369209) on
91+
NVidia drivers](https://bugs.chromium.org/p/chromium/issues/detail?id=369209) on
9292
Linux.
9393
* On Mac, the native window shadow will not be shown on a transparent window.
9494

docs/api/session.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ the original network configuration.
454454
* `errorCode` Integer - Error code.
455455
* `callback` Function
456456
* `verificationResult` Integer - Value can be one of certificate error codes
457-
from [here](https://code.google.com/p/chromium/codesearch#chromium/src/net/base/net_error_list.h).
457+
from [here](https://source.chromium.org/chromium/chromium/src/+/master:net/base/net_error_list.h).
458458
Apart from the certificate error codes, the following special codes can be used.
459459
* `0` - Indicates success and disables Certificate Transparency verification.
460460
* `-2` - Indicates failure.

docs/api/structures/protocol-response.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131
* `uploadData` ProtocolResponseUploadData (optional) - The data used as upload data. This is only
3232
used for URL responses when `method` is `"POST"`.
3333

34-
[net-error]: https://code.google.com/p/chromium/codesearch#chromium/src/net/base/net_error_list.h
34+
[net-error]: https://source.chromium.org/chromium/chromium/src/+/master:net/base/net_error_list.h

docs/development/build-instructions-gn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Security` → `System` → `Advanced system settings` and add a system variable
2626
your locally installed version of Visual Studio (by default, `depot_tools` will
2727
try to download a Google-internal version that only Googlers have access to).
2828

29-
[depot-tools]: http://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html/depot_tools_tutorial.html#_setting_up
29+
[depot-tools]: https://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html/depot_tools_tutorial.html#_setting_up
3030

3131
### Setting up the git cache
3232

docs/development/build-instructions-windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Follow the guidelines below for building Electron on Windows.
1616
* [Python for Windows (pywin32) Extensions](https://pypi.org/project/pywin32/#files)
1717
is also needed in order to run the build process.
1818
* [Node.js](https://nodejs.org/download/)
19-
* [Git](http://git-scm.com)
19+
* [Git](https://git-scm.com)
2020
* Debugging Tools for Windows of Windows SDK 10.0.15063.468 if you plan on
2121
creating a full distribution since `symstore.exe` is used for creating a symbol
2222
store from `.pdb` files.

docs/development/chromium-development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
- [Code Search](https://cs.chromium.org/)
99
- [Source Code](https://cs.chromium.org/chromium/src/)
1010
- [Development Calendar and Release Info](https://www.chromium.org/developers/calendar)
11-
- [Discussion Groups](http://www.chromium.org/developers/discussion-groups)
11+
- [Discussion Groups](https://www.chromium.org/developers/discussion-groups)
1212

1313
See also [V8 Development](v8-development.md)

docs/development/clang-format.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Using clang-format on C++ Code
22

3-
[`clang-format`](http://clang.llvm.org/docs/ClangFormat.html) is a tool to
3+
[`clang-format`](https://clang.llvm.org/docs/ClangFormat.html) is a tool to
44
automatically format C/C++/Objective-C code, so that developers don't need to
55
worry about style issues during code reviews.
66

@@ -31,5 +31,5 @@ You can also integrate `clang-format` directly into your favorite editors.
3131
For further guidance on setting up editor integration, see these pages:
3232

3333
* [Atom](https://atom.io/packages/clang-format)
34-
* [Vim & Emacs](http://clang.llvm.org/docs/ClangFormat.html#vim-integration)
34+
* [Vim & Emacs](https://clang.llvm.org/docs/ClangFormat.html#vim-integration)
3535
* [Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=xaver.clang-format)

docs/development/coding-style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ formatted correctly.
4747

4848
## JavaScript
4949

50-
* Write [standard](https://npm.im/standard) JavaScript style.
50+
* Write [standard](https://www.npmjs.com/package/standard) JavaScript style.
5151
* File names should be concatenated with `-` instead of `_`, e.g.
5252
`file-name.js` rather than `file_name.js`, because in
5353
[github/atom](https://github.com/github/atom) module names are usually in

docs/development/debugging-instructions-macos.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,4 +129,4 @@ will explain more complex debugging scenarios.
129129
130130
[lldb-command-structure]: https://developer.apple.com/library/mac/documentation/IDEs/Conceptual/gdb_to_lldb_transition_guide/document/lldb-basics.html#//apple_ref/doc/uid/TP40012917-CH2-SW2
131131
[lldb-standalone]: https://developer.apple.com/library/mac/documentation/IDEs/Conceptual/gdb_to_lldb_transition_guide/document/lldb-terminal-workflow-tutorial.html
132-
[lldb-tutorial]: http://lldb.llvm.org/tutorial.html
132+
[lldb-tutorial]: https://lldb.llvm.org/tutorial.html

0 commit comments

Comments
 (0)
X Tutup