summaryrefslogtreecommitdiffstats
path: root/remoting/tools
diff options
context:
space:
mode:
authordbeam <dbeam@chromium.org>2015-05-27 12:21:46 -0700
committerCommit bot <commit-bot@chromium.org>2015-05-27 19:22:56 +0000
commit62c4d625607102862bd43c9f353ab8629a6065a6 (patch)
tree88c6e58eee0161338ae8a0f12f618f9d2e2731e2 /remoting/tools
parent25e4d8e38f33b156b484484b4f156f402111c209 (diff)
downloadchromium_src-62c4d625607102862bd43c9f353ab8629a6065a6.zip
chromium_src-62c4d625607102862bd43c9f353ab8629a6065a6.tar.gz
chromium_src-62c4d625607102862bd43c9f353ab8629a6065a6.tar.bz2
Change some straggling **/ end JSDoc comments to */.
I fixed this before but forgot to enable the style check. TBR=brettw@chromium.org BUG=366972 Review URL: https://codereview.chromium.org/1158233002 Cr-Commit-Position: refs/heads/master@{#331620}
Diffstat (limited to 'remoting/tools')
-rw-r--r--remoting/tools/remote_test_helper/host.js10
-rw-r--r--remoting/tools/remote_test_helper/jsonrpc.js4
2 files changed, 7 insertions, 7 deletions
diff --git a/remoting/tools/remote_test_helper/host.js b/remoting/tools/remote_test_helper/host.js
index 1c8b1b4..3b7d87b 100644
--- a/remoting/tools/remote_test_helper/host.js
+++ b/remoting/tools/remote_test_helper/host.js
@@ -16,7 +16,7 @@ var Action = {
/**
* Method to handle sending keypress events to the server.
* @param {Event} event The event handler event.
- **/
+ */
function handleKeyPress(event) {
jsonRpc.setLastEvent(Action.Keydown, event.keyCode, 0);
}
@@ -24,7 +24,7 @@ function handleKeyPress(event) {
/**
* Method to handle sending mouse down events to the server.
* @param {Event} event The event handler event.
- **/
+ */
function handleMouseDown(event) {
jsonRpc.setLastEvent(Action.Buttonpress, event.button, 0);
}
@@ -32,7 +32,7 @@ function handleMouseDown(event) {
/**
* Method to handle sending mouse move events to the server.
* @param {Event} event The event handler event.
- **/
+ */
function handleMouseMove(event) {
jsonRpc.setLastEvent(Action.Mousemove, event.keyCode, 0);
}
@@ -40,7 +40,7 @@ function handleMouseMove(event) {
/**
* Method to handle sending mouse wheel events to the server.
* @param {Event} event The event handler event.
- **/
+ */
function handleMouseWheel(event) {
jsonRpc.setLastEvent(Action.Mousewheel, 0, 0);
}
@@ -48,7 +48,7 @@ function handleMouseWheel(event) {
/**
* Method to handle sending drag events to the server.
* @param {Event} event The event handler event.
- **/
+ */
function handleDrag(event) {
jsonRpc.setLastEvent(Action.Drag, 0, 0);
}
diff --git a/remoting/tools/remote_test_helper/jsonrpc.js b/remoting/tools/remote_test_helper/jsonrpc.js
index 7b46339..0e7cba4 100644
--- a/remoting/tools/remote_test_helper/jsonrpc.js
+++ b/remoting/tools/remote_test_helper/jsonrpc.js
@@ -27,7 +27,7 @@ jsonRpc.clearLastEvent = function() {
* @param {list} params The method parameters to pass.
* @param {number=} opt_ident The request id.
* @return The JSON-RPC request object
- **/
+ */
jsonRpc.generateJsonRpcRequest = function(methodname, params, opt_ident) {
ident = opt_ident == undefined ? 0 : opt_ident;
var request = {
@@ -42,7 +42,7 @@ jsonRpc.generateJsonRpcRequest = function(methodname, params, opt_ident) {
/**
* Method to POST the request to the RPC server.
* @param {object} json_request The JSON request object.
- **/
+ */
jsonRpc.sendRpcRequest = function(json_request) {
jsonRpc.responseObject = null;
var xhr = new XMLHttpRequest();