| Index: chrome/browser/resources/options/browser_options_startup_page_list.js
|
| diff --git a/chrome/browser/resources/options/browser_options_startup_page_list.js b/chrome/browser/resources/options/browser_options_startup_page_list.js
|
| index 563eea82c727d6dced234d873639a70ad60e1e4f..9ad476683ab254d9a588bb73c550d41fd675e78b 100644
|
| --- a/chrome/browser/resources/options/browser_options_startup_page_list.js
|
| +++ b/chrome/browser/resources/options/browser_options_startup_page_list.js
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 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.
|
|
|
| @@ -119,7 +119,9 @@ cr.define('options.browser_options', function() {
|
|
|
| /** @inheritDoc */
|
| createItem: function(pageInfo) {
|
| - return new StartupPageListItem(pageInfo);
|
| + var item = new StartupPageListItem(pageInfo);
|
| + item.urlField_.disabled = this.disabled;
|
| + return item;
|
| },
|
|
|
| /** @inheritDoc */
|
|
|