Index: Source/devtools/front_end/workspace/Workspace.js |
diff --git a/Source/devtools/front_end/sdk/Workspace.js b/Source/devtools/front_end/workspace/Workspace.js |
similarity index 100% |
rename from Source/devtools/front_end/sdk/Workspace.js |
rename to Source/devtools/front_end/workspace/Workspace.js |
index b615741b1dbdc9fb32f22926bd6eeac7beaf2141..911285f20a923ff883f6bfe3d659841ceb7deec4 100644 |
--- a/Source/devtools/front_end/sdk/Workspace.js |
+++ b/Source/devtools/front_end/workspace/Workspace.js |
@@ -29,6 +29,39 @@ |
*/ |
/** |
+ * @interface |
+ */ |
+WebInspector.ProjectSearchConfig = function() {} |
+ |
+WebInspector.ProjectSearchConfig.prototype = { |
+ /** |
+ * @return {string} |
+ */ |
+ query: function() { }, |
+ |
+ /** |
+ * @return {boolean} |
+ */ |
+ ignoreCase: function() { }, |
+ |
+ /** |
+ * @return {boolean} |
+ */ |
+ isRegex: function() { }, |
+ |
+ /** |
+ * @return {!Array.<string>} |
+ */ |
+ queries: function() { }, |
+ |
+ /** |
+ * @param {string} filePath |
+ * @return {boolean} |
+ */ |
+ filePathMatchesFileQuery: function(filePath) { } |
+} |
+ |
+/** |
* @constructor |
* @param {string} parentPath |
* @param {string} name |
@@ -147,39 +180,6 @@ WebInspector.ProjectDelegate.prototype = { |
} |
/** |
- * @interface |
- */ |
-WebInspector.ProjectSearchConfig = function() {} |
- |
-WebInspector.ProjectSearchConfig.prototype = { |
- /** |
- * @return {string} |
- */ |
- query: function() { }, |
- |
- /** |
- * @return {boolean} |
- */ |
- ignoreCase: function() { }, |
- |
- /** |
- * @return {boolean} |
- */ |
- isRegex: function() { }, |
- |
- /** |
- * @return {!Array.<string>} |
- */ |
- queries: function() { }, |
- |
- /** |
- * @param {string} filePath |
- * @return {boolean} |
- */ |
- filePathMatchesFileQuery: function(filePath) { } |
-} |
- |
-/** |
* @constructor |
* @param {!WebInspector.Project} project |
*/ |