| Index: chrome/browser/resources/options2/handler_options.js
 | 
| diff --git a/chrome/browser/resources/options2/handler_options.js b/chrome/browser/resources/options2/handler_options.js
 | 
| index 039d9eb1d3fb434e336bb829eea3e4b07eb62b73..a62a1e78f7c51db7a88f092c8d5e533deead62a8 100644
 | 
| --- a/chrome/browser/resources/options2/handler_options.js
 | 
| +++ b/chrome/browser/resources/options2/handler_options.js
 | 
| @@ -1,4 +1,4 @@
 | 
| -// Copyright (c) 2011 The Chromium Authors. All rights reserved.
 | 
| +// 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.
 | 
|  
 | 
| @@ -56,7 +56,7 @@ cr.define('options', function() {
 | 
|  
 | 
|    /**
 | 
|     * Sets the list of handlers shown by the view.
 | 
| -   * @param handlers to be shown in the view.
 | 
| +   * @param {Array} Handlers to be shown in the view.
 | 
|     */
 | 
|    HandlerOptions.setHandlers = function(handlers) {
 | 
|      $('handlers-list').setHandlers(handlers);
 | 
| @@ -64,7 +64,7 @@ cr.define('options', function() {
 | 
|  
 | 
|    /**
 | 
|     * Sets the list of ignored handlers shown by the view.
 | 
| -   * @param handlers to be shown in the view.
 | 
| +   * @param {Array} Handlers to be shown in the view.
 | 
|     */
 | 
|    HandlerOptions.setIgnoredHandlers = function(handlers) {
 | 
|      $('ignored-handlers-section').hidden = handlers.length == 0;
 | 
| 
 |