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

Unified Diff: Source/devtools/front_end/main/Main.js

Issue 1257793005: Devtools UI: Enable tooltips by default (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | « LayoutTests/inspector/extensions/extensions-panel.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/main/Main.js
diff --git a/Source/devtools/front_end/main/Main.js b/Source/devtools/front_end/main/Main.js
index 917cb750f323fe73806d43d0ddfec873327e3f87..3311b931ff7913ed31b4602b6ebbf58cfb2c7327 100644
--- a/Source/devtools/front_end/main/Main.js
+++ b/Source/devtools/front_end/main/Main.js
@@ -148,7 +148,7 @@ WebInspector.Main.prototype = {
Runtime.experiments.register("timelineInvalidationTracking", "Timeline invalidation tracking", true);
Runtime.experiments.register("timelineTracingJSProfile", "Timeline tracing based JS profiler", true);
Runtime.experiments.register("timelineFlowEvents", "Timeline flow events", true);
- Runtime.experiments.register("tooltips", "Tooltips", true);
+ Runtime.experiments.register("tooltips", "Tooltips");
Runtime.experiments.register("inlineVariableValues", "Display variable values inline while debugging");
Runtime.experiments.cleanUpStaleExperiments();
@@ -170,7 +170,8 @@ WebInspector.Main.prototype = {
Runtime.experiments.setDefaultExperiments([
"inlineVariableValues",
- "serviceWorkersInPageFrontend"
+ "serviceWorkersInPageFrontend",
+ "tooltips"
]);
},
« no previous file with comments | « LayoutTests/inspector/extensions/extensions-panel.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698