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

Unified Diff: Source/devtools/front_end/ui/Toolbar.js

Issue 1311693004: [DevTools] UI for blocked URLs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: typo 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
Index: Source/devtools/front_end/ui/Toolbar.js
diff --git a/Source/devtools/front_end/ui/Toolbar.js b/Source/devtools/front_end/ui/Toolbar.js
index 331056bfd793d36ab517514dfb7d13e95c83f9bc..5e616c398a7a7e05b8a38176b0532e32b5fad9b9 100644
--- a/Source/devtools/front_end/ui/Toolbar.js
+++ b/Source/devtools/front_end/ui/Toolbar.js
@@ -750,6 +750,19 @@ WebInspector.ToolbarSeparator.prototype = {
/**
* @constructor
+ * @extends {WebInspector.ToolbarItem}
+ */
+WebInspector.ToolbarSpace = function()
+{
+ WebInspector.ToolbarItem.call(this, createElementWithClass("div", "toolbar-space"));
+}
+
+WebInspector.ToolbarSpace.prototype = {
+ __proto__: WebInspector.ToolbarItem.prototype
+}
+
+/**
+ * @constructor
* @extends {WebInspector.ToolbarButtonBase}
* @param {string} title
* @param {string} className

Powered by Google App Engine
This is Rietveld 408576698