| Index: chrome/test/data/webui/options.js
|
| diff --git a/chrome/test/data/webui/options.js b/chrome/test/data/webui/options.js
|
| index 00b476331a2610d18cc19c761901670c17c1a3fe..d7d9492c55959225a69b092cc09a42b70915d5f5 100644
|
| --- a/chrome/test/data/webui/options.js
|
| +++ b/chrome/test/data/webui/options.js
|
| @@ -13,7 +13,7 @@ OptionsWebUITest.prototype = {
|
| __proto__: testing.Test.prototype,
|
|
|
| /**
|
| - * Browse to the options page & call our PreLoad().
|
| + * Browse to the options page & call our preLoad().
|
| **/
|
| browsePreload: 'chrome://settings',
|
|
|
| @@ -21,7 +21,7 @@ OptionsWebUITest.prototype = {
|
| * Register a mock handler to ensure expectations are met and options pages
|
| * behave correctly.
|
| **/
|
| - PreLoad: function() {
|
| + preLoad: function() {
|
|
|
| /**
|
| * Create handler class with empty methods to allow mocking to register
|
| @@ -73,7 +73,7 @@ TEST_F('OptionsWebUITest', 'MAYBE_testSetBooleanPrefTriggers', function() {
|
| true,
|
| 'Options_Homepage_HomeButton',
|
| ];
|
| - // Note: this expectation is checked in testing::Test::TearDown.
|
| + // Note: this expectation is checked in testing::Test::tearDown.
|
| this.mockHandler.expects(once()).setBooleanPref(trueListValue);
|
|
|
| // Cause the handler to be called.
|
|
|