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

Unified Diff: Source/devtools/front_end/resources/DatabaseQueryView.js

Issue 1264133002: Devtools: [WIP] Implement enhanced devtools extension language APIs Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Small cleanups - prefer URIs to contentURLs, revert protocol unifications, remove lambdas Created 5 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/main/Main.js ('k') | Source/devtools/front_end/sdk/ConsoleModel.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/resources/DatabaseQueryView.js
diff --git a/Source/devtools/front_end/resources/DatabaseQueryView.js b/Source/devtools/front_end/resources/DatabaseQueryView.js
index 00fc611a10c1f02b6ae8030ba70ebf093fe0972f..4082e1aa020bc495cd6ed1bd2a6c9d47ed35b224 100644
--- a/Source/devtools/front_end/resources/DatabaseQueryView.js
+++ b/Source/devtools/front_end/resources/DatabaseQueryView.js
@@ -69,11 +69,13 @@ WebInspector.DatabaseQueryView.prototype = {
/**
* @param {!Element} proxyElement
+ * @param {string} text
+ * @param {number} cursorOffset
* @param {!Range} wordRange
* @param {boolean} force
* @param {function(!Array.<string>, number=)} completionsReadyCallback
*/
- completions: function(proxyElement, wordRange, force, completionsReadyCallback)
+ completions: function(proxyElement, text, cursorOffset, wordRange, force, completionsReadyCallback)
{
var prefix = wordRange.toString().toLowerCase();
if (!prefix)
« no previous file with comments | « Source/devtools/front_end/main/Main.js ('k') | Source/devtools/front_end/sdk/ConsoleModel.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698