update excerpts based on feedback

This commit is contained in:
Zeke Sikelianos 2016-04-22 10:30:49 -07:00
parent 0527b17e42
commit 2c8261b429
8 changed files with 12 additions and 12 deletions

View file

@ -1,6 +1,7 @@
# contentTracing # contentTracing
> Debug your application using Chromium's content module. > Collect tracing data from Chromium's content module for finding performance
bottlenecks and slow operations.
This module does not include a web interface This module does not include a web interface
so you need to open `chrome://tracing/` in a Chrome browser and load the so you need to open `chrome://tracing/` in a Chrome browser and load the

View file

@ -1,7 +1,7 @@
# desktopCapturer # desktopCapturer
> Capture audio, video, and images from a microphone, camera, or > List `getUserMedia` sources for capturing audio, video, and images from a
screen using the `getUserMedia` API. microphone, camera, or screen.
```javascript ```javascript
// In the renderer process. // In the renderer process.

View file

@ -1,9 +1,9 @@
# DownloadItem # DownloadItem
> Trigger file downloads from remote sources. > Control file downloads from remote sources.
`DownloadItem` is an EventEmitter represents a download item in Electron. It `DownloadItem` is an EventEmitter that represents a download item in Electron.
is used in `will-download` event of `Session` module, and allows users to It is used in `will-download` event of `Session` module, and allows users to
control the download item. control the download item.
```javascript ```javascript

View file

@ -1,7 +1,6 @@
# protocol # protocol
> Register a custom protocol to intercept click events from other running > Register a custom protocol and intercept existing protocols.
applications.
An example of implementing a protocol that has the same effect as the An example of implementing a protocol that has the same effect as the
`file://` protocol: `file://` protocol:

View file

@ -1,6 +1,6 @@
# remote # remote
> Communicate between the renderer process and the main process. > Use main process modules from the renderer process.
The `remote` module provides a simple way to do inter-process communication The `remote` module provides a simple way to do inter-process communication
(IPC) between the renderer process (web page) and the main process. (IPC) between the renderer process (web page) and the main process.

View file

@ -1,6 +1,6 @@
# session # session
> Manage browser cookies, cache, and other session data. > Manage browser sessions, cookies, cache, proxy settings, etc.
The `session` module can be used to create new `Session` objects. The `session` module can be used to create new `Session` objects.

View file

@ -1,6 +1,6 @@
# Synopsis # Synopsis
> Info about Node.js and the main and renderer processes. > How to use Node.js and Electron APIs.
All of [Node.js's built-in modules](http://nodejs.org/api/) are available in All of [Node.js's built-in modules](http://nodejs.org/api/) are available in
Electron and third-party node modules also fully supported as well (including Electron and third-party node modules also fully supported as well (including

View file

@ -1,6 +1,6 @@
# webContents # webContents
> Render and control web pages using lifecycle events. > Render and control web pages.
`webContents` is an `webContents` is an
[EventEmitter](http://nodejs.org/api/events.html#events_class_events_eventemitter). [EventEmitter](http://nodejs.org/api/events.html#events_class_events_eventemitter).