| 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);
|
|
|