Liking cljdoc? Tell your friends :D

chromex.app.feedback-private

clj

Use the chrome.feedbackPrivate API to provide Chrome [OS] feedback to the Google Feedback servers.

  • available since Chrome 29
Use the chrome.feedbackPrivate API to provide Chrome [OS]
feedback to the Google Feedback servers.

  * available since Chrome 29
raw docstring

api-tableclj

source

gen-callclj

source

gen-wrapclj/smacro

(gen-wrap kind item-id config & args)
source

get-stringsclj/smacro

(get-strings flow)

Gets localized translated strings for feedback. It returns the strings as a dictionary mapping from string identifier to the translated string to use in the feedback app UI.

|flow| - ?

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [result] where:

|result| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Gets localized translated strings for feedback. It returns the strings as a dictionary mapping from string identifier to
the translated string to use in the feedback app UI.

  |flow| - ?

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [result] where:

  |result| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

get-strings*cljs

(get-strings* config flow)
source

get-system-informationclj/smacro

(get-system-information)

Returns the system information dictionary.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [system-information] where:

|system-information| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Returns the system information dictionary.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [system-information] where:

  |system-information| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

get-system-information*cljs

(get-system-information* config)
source

get-user-emailclj/smacro

(get-user-email)

Returns the email of the currently active or logged in user.

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [email] where:

|email| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Returns the email of the currently active or logged in user.

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [email] where:

  |email| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

get-user-email*cljs

(get-user-email* config)
source

log-srt-prompt-resultclj/smacro

(log-srt-prompt-result result)

Logs whether the user accepted a prompt to try the Software Removal Tool.

|result| - ?

Logs whether the user accepted a prompt to try the Software Removal Tool.

|result| - ?
sourceraw docstring

log-srt-prompt-result*cljs

(log-srt-prompt-result* config result)
source

on-feedback-requested*cljs

(on-feedback-requested* config channel & args)
source

read-log-sourceclj/smacro

(read-log-source params)

Reads from a log source indicated by source. If incremental is false: Returns the entire contents of the log file. Returns readerId value of 0 to callback. If incremental is true, and no readerId is provided: Returns the entire contents of the log file. Starts tracking the file read handle, which is returned as a nonzero readerId value in the callback. If can't create a new file handle, returns readerId value of 0 in the callback. If incremental is true, and a valid non-zero readerId is provided: Returns new lines written to the file since the last time this function was called for the same file and readerId. Returns the same readerId value to the callback.

|params| - ?

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [result] where:

|result| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Reads from a log source indicated by source. If incremental is false:    Returns the entire contents of the log file.
Returns readerId value of 0 to callback.  If incremental is true, and no readerId is provided:    Returns the entire
contents of the log file.   Starts tracking the file read handle, which is returned as a       nonzero readerId value in
the callback.          If can't create a new file handle, returns readerId       value of 0 in the callback.         If
incremental is true, and a valid non-zero readerId is provided:    Returns new lines written to the file since the last
time this       function was called for the same file and readerId.          Returns the same readerId value to the
callback.

  |params| - ?

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [result] where:

  |result| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

read-log-source*cljs

(read-log-source* config params)
source

send-feedbackclj/smacro

(send-feedback feedback)

Sends a feedback report.

|feedback| - ?

This function returns a core.async channel of type promise-chan which eventually receives a result value. Signature of the result value put on the channel is [status type] where:

|status| - ? |type| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via chromex.error/get-last-error.

Sends a feedback report.

  |feedback| - ?

This function returns a core.async channel of type `promise-chan` which eventually receives a result value.
Signature of the result value put on the channel is [status type] where:

  |status| - ?
  |type| - ?

In case of an error the channel closes without receiving any value and relevant error object can be obtained via
chromex.error/get-last-error.
sourceraw docstring

send-feedback*cljs

(send-feedback* config feedback)
source

tap-all-eventsclj/smacro

(tap-all-events chan)

Taps all valid non-deprecated events in chromex.app.feedback-private namespace.

Taps all valid non-deprecated events in chromex.app.feedback-private namespace.
sourceraw docstring

tap-on-feedback-requested-eventsclj/smacro

(tap-on-feedback-requested-events channel & args)

Fired when the a user requests the launch of the feedback UI. We're using an event for this versus using the override API since we want to be invoked, but not showing a UI, so the feedback extension can take a screenshot of the user's desktop.

Events will be put on the |channel| with signature [::on-feedback-requested [feedback]] where:

|feedback| - ?

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.

Fired when the a user requests the launch of the feedback UI. We're using an event for this versus using the override API
since we want to be invoked, but not showing a UI, so the feedback extension can take a screenshot of the user's desktop.

Events will be put on the |channel| with signature [::on-feedback-requested [feedback]] where:

  |feedback| - ?

Note: |args| will be passed as additional parameters into Chrome event's .addListener call.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close