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

Unified Diff: Source/devtools/front_end/elements/StylesSidebarPane.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/console/module.json ('k') | Source/devtools/front_end/es6.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/elements/StylesSidebarPane.js
diff --git a/Source/devtools/front_end/elements/StylesSidebarPane.js b/Source/devtools/front_end/elements/StylesSidebarPane.js
index fc59bd7afdf624e6de940db87b36c94a0e14d1f8..e0f6ddef9fb9a0969d3a7511f69293e268d306c3 100644
--- a/Source/devtools/front_end/elements/StylesSidebarPane.js
+++ b/Source/devtools/front_end/elements/StylesSidebarPane.js
@@ -3001,11 +3001,13 @@ WebInspector.StylesSidebarPane.CSSPropertyPrompt.prototype = {
/**
* @param {!Element} proxyElement
+ * @param {string} text
+ * @param {number} cursorOffset
* @param {!Range} wordRange
* @param {boolean} force
* @param {function(!Array.<string>, number=)} completionsReadyCallback
*/
- _buildPropertyCompletions: function(proxyElement, wordRange, force, completionsReadyCallback)
+ _buildPropertyCompletions: function(proxyElement, text, cursorOffset, wordRange, force, completionsReadyCallback)
{
var prefix = wordRange.toString().toLowerCase();
if (!prefix && !force && (this._isEditingName || proxyElement.textContent.length)) {
« no previous file with comments | « Source/devtools/front_end/console/module.json ('k') | Source/devtools/front_end/es6.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698