 Chromium Code Reviews
 Chromium Code Reviews Issue 2542073002:
  DevTools: [Persistence] validate persistence binding.  (Closed)
    
  
    Issue 2542073002:
  DevTools: [Persistence] validate persistence binding.  (Closed) 
  | 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 52c64817f9a209ee4175bee99364f07b786c9b75..c7e58b5b1e97624f4d31717f08fa59fe04b3d624 100644 | 
| --- a/third_party/WebKit/Source/devtools/front_end/main/Main.js | 
| +++ b/third_party/WebKit/Source/devtools/front_end/main/Main.js | 
| @@ -104,6 +104,7 @@ Main.Main = class { | 
| Runtime.experiments.register('liveSASS', 'Live SASS'); | 
| Runtime.experiments.register('nodeDebugging', 'Node debugging', true); | 
| Runtime.experiments.register('persistence2', 'Persistence 2.0'); | 
| + Runtime.experiments.register('persistenceValidation', 'Validate persistence bindings'); | 
| 
dgozman
2016/12/08 22:38:53
You should manage to keep this list sorted by both
 | 
| Runtime.experiments.register('privateScriptInspection', 'Private script inspection'); | 
| Runtime.experiments.register('requestBlocking', 'Request blocking', true); | 
| Runtime.experiments.register('timelineShowAllEvents', 'Show all events on Timeline', true); | 
| @@ -126,7 +127,7 @@ Main.Main = class { | 
| Runtime.experiments.enableForTest('accessibilityInspection'); | 
| } | 
| - Runtime.experiments.setDefaultExperiments(['timelineRecordingPerspectives']); | 
| + Runtime.experiments.setDefaultExperiments(['timelineRecordingPerspectives', 'persistenceValidation']); | 
| } | 
| /** |