Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Side by Side Diff: Source/devtools/front_end/workspace/SearchConfig.js

Issue 471433004: DevTools: Split out the "workspace" and "bindings" modules from "sdk" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove marker interfaces and WI.SourceMapping Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/workspace/IsolatedFileSystemManager.js ('k') | Source/devtools/front_end/workspace/UISourceCode.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698