| Index: third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.js b/third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.js
|
| index e4f1894325f20a7a6cd5f029bd5ccec25cfc455e..0fd019809126bde42f9366aaca0b503a08341051 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/snippets/SnippetStorage.js
|
| @@ -172,6 +172,9 @@ WebInspector.Snippet.prototype = {
|
| return this._name;
|
| },
|
|
|
| + /**
|
| + * @param {string} name
|
| + */
|
| set name(name)
|
| {
|
| if (this._name === name)
|
| @@ -189,6 +192,9 @@ WebInspector.Snippet.prototype = {
|
| return this._content;
|
| },
|
|
|
| + /**
|
| + * @param {string} content
|
| + */
|
| set content(content)
|
| {
|
| if (this._content === content)
|
|
|