| Index: tools/json_schema_compiler/js_externs_generator_test.py
|
| diff --git a/tools/json_schema_compiler/js_externs_generator_test.py b/tools/json_schema_compiler/js_externs_generator_test.py
|
| index 0d4160b52decb78162ab9190959a0e0687f56dda..2ca31695665633e29ed76154f7ba274416c3adb9 100755
|
| --- a/tools/json_schema_compiler/js_externs_generator_test.py
|
| +++ b/tools/json_schema_compiler/js_externs_generator_test.py
|
| @@ -54,6 +54,9 @@ namespace fakeApi {
|
| // |baz| : The baz to use.
|
| static void doSomething(Baz baz, VoidCallback callback);
|
|
|
| + // |callback| : The callback which will most assuredly in all cases be
|
| + // called; that is, of course, iff such a callback was provided and is
|
| + // not at all null.
|
| static void bazGreek(optional BazGreekCallback callback);
|
|
|
| [deprecated="Use a new method."] static DOMString returnString();
|
| @@ -117,7 +120,9 @@ var Baz;
|
| chrome.fakeApi.doSomething = function(baz, callback) {};
|
|
|
| /**
|
| - * @param {function(Baz, !chrome.fakeApi.Greek):void=} callback
|
| + * @param {function(Baz, !chrome.fakeApi.Greek):void=} callback The callback
|
| + * which will most assuredly in all cases be called; that is, of course, iff
|
| + * such a callback was provided and is not at all null.
|
| */
|
| chrome.fakeApi.bazGreek = function(callback) {};
|
|
|
|
|