| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @constructor | 6 * @constructor |
| 7 * @implements {WebInspector.ProjectSearchConfig} | 7 * @implements {WebInspector.ProjectSearchConfig} |
| 8 * @param {string} query | 8 * @param {string} query |
| 9 * @param {boolean} ignoreCase | 9 * @param {boolean} ignoreCase |
| 10 * @param {boolean} isRegex | 10 * @param {boolean} isRegex |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 /** | 174 /** |
| 175 * @constructor | 175 * @constructor |
| 176 * @param {string} text | 176 * @param {string} text |
| 177 * @param {boolean} isNegative | 177 * @param {boolean} isNegative |
| 178 */ | 178 */ |
| 179 WebInspector.SearchConfig.QueryTerm = function(text, isNegative) | 179 WebInspector.SearchConfig.QueryTerm = function(text, isNegative) |
| 180 { | 180 { |
| 181 this.text = text; | 181 this.text = text; |
| 182 this.isNegative = isNegative; | 182 this.isNegative = isNegative; |
| 183 } | 183 } |
| OLD | NEW |