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

Unified Diff: Source/devtools/front_end/workspace/Workspace.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/workspace/UISourceCode.js ('k') | Source/devtools/scripts/frontend_modules.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
*/
« no previous file with comments | « Source/devtools/front_end/workspace/UISourceCode.js ('k') | Source/devtools/scripts/frontend_modules.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698