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

Side by Side Diff: Source/WebCore/inspector/Inspector.json

Issue 8371003: Merge 97851 - Web Inspector: Enable caseSensitive search / Regex support in advanced search. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/912/
Patch Set: Created 9 years, 2 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
OLDNEW
1 { 1 {
2 "version": { "major": "0", "minor": "1" }, 2 "version": { "major": "0", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 ], 8 ],
9 "events": [ 9 "events": [
10 { 10 {
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 { "name": "base64Encoded", "type": "boolean", "description": "True, if content was served as base64." } 216 { "name": "base64Encoded", "type": "boolean", "description": "True, if content was served as base64." }
217 ], 217 ],
218 "hidden": true 218 "hidden": true
219 }, 219 },
220 { 220 {
221 "name": "searchInResource", 221 "name": "searchInResource",
222 "description": "Searches for given string in resource content.", 222 "description": "Searches for given string in resource content.",
223 "parameters": [ 223 "parameters": [
224 { "name": "frameId", "type": "string", "description": "Frame id for resource to search in." }, 224 { "name": "frameId", "type": "string", "description": "Frame id for resource to search in." },
225 { "name": "url", "type": "string", "description": "URL of th e resource to search in." }, 225 { "name": "url", "type": "string", "description": "URL of th e resource to search in." },
226 { "name": "query", "type": "string", "description": "String to search for." } 226 { "name": "query", "type": "string", "description": "String to search for." },
227 { "name": "caseSensitive", "type": "boolean", "optional": tr ue, "description": "If true, search is case sensitive." },
228 { "name": "isRegex", "type": "boolean", "optional": true, "d escription": "If true, treats string parameter as regex." }
227 ], 229 ],
228 "returns": [ 230 "returns": [
229 { "name": "result", "type": "array", "items": { "$ref": "Sea rchMatch" }, "description": "List of search matches." } 231 { "name": "result", "type": "array", "items": { "$ref": "Sea rchMatch" }, "description": "List of search matches." }
230 ], 232 ],
231 "hidden": true 233 "hidden": true
232 }, 234 },
233 { 235 {
234 "name": "searchInResources", 236 "name": "searchInResources",
235 "description": "Searches for given string in frame / resource tr ee structure.", 237 "description": "Searches for given string in frame / resource tr ee structure.",
236 "parameters": [ 238 "parameters": [
(...skipping 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after
1768 "description": "Stops on the next JavaScript statement." 1770 "description": "Stops on the next JavaScript statement."
1769 }, 1771 },
1770 { 1772 {
1771 "name": "resume", 1773 "name": "resume",
1772 "description": "Resumes JavaScript execution." 1774 "description": "Resumes JavaScript execution."
1773 }, 1775 },
1774 { 1776 {
1775 "name": "searchInContent", 1777 "name": "searchInContent",
1776 "parameters": [ 1778 "parameters": [
1777 { "name": "scriptId", "$ref": "ScriptId", "description": "Id of the script to search in." }, 1779 { "name": "scriptId", "$ref": "ScriptId", "description": "Id of the script to search in." },
1778 { "name": "query", "type": "string", "description": "String to search for." } 1780 { "name": "query", "type": "string", "description": "String to search for." },
1781 { "name": "caseSensitive", "type": "boolean", "optional": tr ue, "description": "If true, search is case sensitive." },
1782 { "name": "isRegex", "type": "boolean", "optional": true, "d escription": "If true, treats string parameter as regex." }
1779 ], 1783 ],
1780 "returns": [ 1784 "returns": [
1781 { "name": "result", "type": "array", "items": { "$ref": "Pag e.SearchMatch" }, "description": "List of search matches." } 1785 { "name": "result", "type": "array", "items": { "$ref": "Pag e.SearchMatch" }, "description": "List of search matches." }
1782 ], 1786 ],
1783 "description": "Searches for given string in script content." 1787 "description": "Searches for given string in script content."
1784 }, 1788 },
1785 { 1789 {
1786 "name": "setScriptSource", 1790 "name": "setScriptSource",
1787 "parameters": [ 1791 "parameters": [
1788 { "name": "scriptId", "$ref": "ScriptId", "description": "Id of the script to edit." }, 1792 { "name": "scriptId", "$ref": "ScriptId", "description": "Id of the script to edit." },
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
2120 { 2124 {
2121 "name": "dispatchMessageFromWorker", 2125 "name": "dispatchMessageFromWorker",
2122 "parameters": [ 2126 "parameters": [
2123 { "name": "workerId", "type": "integer" }, 2127 { "name": "workerId", "type": "integer" },
2124 { "name": "message", "type": "object" } 2128 { "name": "message", "type": "object" }
2125 ] 2129 ]
2126 } 2130 }
2127 ] 2131 ]
2128 }] 2132 }]
2129 } 2133 }
OLDNEW
« no previous file with comments | « Source/WebCore/inspector/ContentSearchUtils.cpp ('k') | Source/WebCore/inspector/InspectorDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698