| Index: third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js b/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
|
| index a61274dab13f60589f454808dfa090ffbef1b4ca..18164bd77e335f0a2a3a25cd3e5edf8cf7c3727a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/ui/SuggestBox.js
|
| @@ -37,12 +37,12 @@ UI.SuggestBoxDelegate.prototype = {
|
| * @param {string} suggestion
|
| * @param {boolean=} isIntermediateSuggestion
|
| */
|
| - applySuggestion: function(suggestion, isIntermediateSuggestion) {},
|
| + applySuggestion(suggestion, isIntermediateSuggestion) {},
|
|
|
| /**
|
| * acceptSuggestion will be always called after call to applySuggestion with isIntermediateSuggestion being equal to false.
|
| */
|
| - acceptSuggestion: function() {},
|
| + acceptSuggestion() {},
|
| };
|
|
|
| /**
|
|
|