From e8bb79310c5d0f269f2564bfa15bd45fe5ce56af Mon Sep 17 00:00:00 2001 From: Zeke Sikelianos Date: Tue, 1 Nov 2016 16:35:31 -0700 Subject: [PATCH] document the process(es) in which APIs are available --- docs/api/app.md | 2 ++ docs/api/clipboard.md | 2 ++ docs/api/desktop-capturer.md | 2 ++ 3 files changed, 6 insertions(+) diff --git a/docs/api/app.md b/docs/api/app.md index 764840dd1e42..634f60cde0e0 100644 --- a/docs/api/app.md +++ b/docs/api/app.md @@ -2,6 +2,8 @@ > Control your application's event lifecycle. +Process: [Main](../tutorial/quick-start.md#main-process) + The following example shows how to quit the application when the last window is closed: diff --git a/docs/api/clipboard.md b/docs/api/clipboard.md index ba2438d36c39..03872ab597a8 100644 --- a/docs/api/clipboard.md +++ b/docs/api/clipboard.md @@ -2,6 +2,8 @@ > Perform copy and paste operations on the system clipboard. +Processes: [Main](../tutorial/quick-start.md#main-process), [Renderer](../tutorial/quick-start.md#renderer-process) + The following example shows how to write a string to the clipboard: ```javascript diff --git a/docs/api/desktop-capturer.md b/docs/api/desktop-capturer.md index 0b6b411e03fc..5e64a8403d22 100644 --- a/docs/api/desktop-capturer.md +++ b/docs/api/desktop-capturer.md @@ -3,6 +3,8 @@ > Access information about media sources that can be used to capture audio and > video from the desktop using the [`navigator.webkitGetUserMedia`] API. +Process: [Renderer](../tutorial/quick-start.md#renderer-process) + The following example shows how to capture video from a desktop window whose title is `Electron`: