Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Unified Diff: ios/chrome/browser/find_in_page/resources/find_in_page.js

Issue 1150173003: Fix some JS style nits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ios/chrome/browser/find_in_page/resources/find_in_page.js
diff --git a/ios/chrome/browser/find_in_page/resources/find_in_page.js b/ios/chrome/browser/find_in_page/resources/find_in_page.js
index c96309192a56031a41a281a3ccb04a7d8ffaa125..ae6289837ae422898a3d9074ffd332a154f6c444 100644
--- a/ios/chrome/browser/find_in_page/resources/find_in_page.js
+++ b/ios/chrome/browser/find_in_page/resources/find_in_page.js
@@ -22,20 +22,20 @@ __gCrWeb['findInPage']['index'] = -1;
/**
* The list of found searches in span form.
- * @type {Array.<Element>}
+ * @type {Array<Element>}
*/
__gCrWeb['findInPage']['spans'] = [];
/**
* The list of frame documents.
* TODO(justincohen): x-domain frames won't work.
- * @type {Array.<Document>}
+ * @type {Array<Document>}
*/
__gCrWeb['findInPage'].frameDocs = [];
/**
* Associate array to stash element styles while the element is highlighted.
- * @type {Object.<Element,Object<string,string>>}
+ * @type {Object<Element,Object<string,string>>}
*/
__gCrWeb['findInPage'].savedElementStyles = {};
@@ -621,7 +621,7 @@ __gCrWeb['findInPage'].removeSelectHighlight = function(element) {
* Normalize coordinates according to the current document dimensions. Don't go
* too far off the screen in either direction. Try to center if possible.
* @param {Element} elem Element to find normalized coordinates for.
- * @return {Array.<number>} Normalized coordinates.
+ * @return {Array<number>} Normalized coordinates.
*/
__gCrWeb['findInPage'].getNormalizedCoordinates = function(elem) {
var fip = __gCrWeb['findInPage'];
@@ -644,8 +644,8 @@ __gCrWeb['findInPage'].getNormalizedCoordinates = function(elem) {
/**
* Scale coordinates according to the width of the screen, in case the screen
* is zoomed out.
- * @param {Array.<number>} coordinates Coordinates to scale.
- * @return {Array.<number>} Scaled coordinates.
+ * @param {Array<number>} coordinates Coordinates to scale.
+ * @return {Array<number>} Scaled coordinates.
*/
__gCrWeb['findInPage'].scaleCoordinates = function(coordinates) {
var scaleFactor = __gCrWeb['findInPage'].pageWidth / window.innerWidth;
@@ -914,7 +914,7 @@ __gCrWeb['findInPage'].isVisible = function(elem) {
/**
* Helper function to find the absolute position of an element on the page.
* @param {Element} elem Element to check.
- * @return {Array.<number>} [x, y] positions.
+ * @return {Array<number>} [x, y] positions.
*/
__gCrWeb['findInPage'].findAbsolutePosition = function(elem) {
var boundingRect = elem.getBoundingClientRect();
@@ -943,7 +943,7 @@ __gCrWeb['findInPage'].escapeRegex = function(text) {
/**
* Gather all iframes in the main window.
- * @return {Array.<Document>} frames.
+ * @return {Array<Document>} frames.
*/
__gCrWeb['findInPage'].frameDocuments = function() {
var windowsToSearch = [window];

Powered by Google App Engine
This is Rietveld 408576698