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

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

Issue 2526013002: [DevTools] Added inline breakpoints (Closed)
Patch Set: replace div with icon Created 4 years, 1 month 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: third_party/WebKit/Source/devtools/front_end/main/Main.js
diff --git a/third_party/WebKit/Source/devtools/front_end/main/Main.js b/third_party/WebKit/Source/devtools/front_end/main/Main.js
index 10a48ecd76ea7ceb3a772a5ffb81168757616b27..943d2c0e8e4362abdbc9915193b4f68c3d4b183f 100644
--- a/third_party/WebKit/Source/devtools/front_end/main/Main.js
+++ b/third_party/WebKit/Source/devtools/front_end/main/Main.js
@@ -75,9 +75,7 @@ Main.Main = class {
var storagePrefix = '';
if (Host.isCustomDevtoolsFrontend())
storagePrefix = '__custom__';
- else if (
- !Runtime.queryParam('can_dock') && !!Runtime.queryParam('debugFrontend') &&
- !Host.isUnderTest(prefs))
+ else if (!Runtime.queryParam('can_dock') && !!Runtime.queryParam('debugFrontend') && !Host.isUnderTest(prefs))
storagePrefix = '__bundled__';
var clearLocalStorage = window.localStorage ? window.localStorage.clear.bind(window.localStorage) : undefined;
var localStorage =
@@ -113,6 +111,7 @@ Main.Main = class {
Runtime.experiments.register('resolveVariableNames', 'Resolve variable names');
Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Timeline', true);
Runtime.experiments.register('timelineShowAllProcesses', 'Show all processes on Timeline', true);
+ Runtime.experiments.register('inlineBreakpoints', 'Show inline breakpoints');
Runtime.experiments.register('securityPanel', 'Security panel');
Runtime.experiments.register('sourceDiff', 'Source diff');
Runtime.experiments.register('terminalInDrawer', 'Terminal in drawer', true);

Powered by Google App Engine
This is Rietveld 408576698