blob: 1ecbc1905eca139d6d5564759499e6ea34819285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
'use strict';
var remoting = remoting || {};
/**
* Show or hide the feedback button based on whether or not the current version
* of Chrome recognizes Chrome Remote Desktop as an authorized feedback source.
*
* @param {HTMLElement} feedbackButton
*/
remoting.initFeedback = function(feedbackButton) {
var chromeVersion = parseInt(
window.navigator.appVersion.match(/Chrome\/(\d+)\./)[1], 10);
if (chromeVersion >= 35) {
feedbackButton.hidden = false;
feedbackButton.addEventListener('click', remoting.sendFeedback, false);
} else {
feedbackButton.hidden = true;
}
};
/**
* Pass the current version of Chrome Remote Desktop to the Google Feedback
* extension and instruct it to show the feedback dialog.
*/
remoting.sendFeedback = function() {
var message = {
requestFeedback: true,
feedbackInfo: {
description: '',
systemInformation: [
{ key: 'version', value: remoting.getExtensionInfo() }
]
}
};
var kFeedbackExtensionId = 'gfdkimpbcpahaombhbimeihdjnejgicl';
chrome.runtime.sendMessage(kFeedbackExtensionId, message, function() {});
};
|