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

Side by Side Diff: Source/devtools/devtools.gypi

Issue 136793008: Clear DevTools temp storage (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'front_end/FileSystemModel.js', 89 'front_end/FileSystemModel.js',
90 'front_end/FileSystemProjectDelegate.js', 90 'front_end/FileSystemProjectDelegate.js',
91 'front_end/FileUtils.js', 91 'front_end/FileUtils.js',
92 'front_end/FilterBar.js', 92 'front_end/FilterBar.js',
93 'front_end/FlameChart.js', 93 'front_end/FlameChart.js',
94 'front_end/FontView.js', 94 'front_end/FontView.js',
95 'front_end/Geometry.js', 95 'front_end/Geometry.js',
96 'front_end/GoToLineDialog.js', 96 'front_end/GoToLineDialog.js',
97 'front_end/HAREntry.js', 97 'front_end/HAREntry.js',
98 'front_end/HandlerRegistry.js', 98 'front_end/HandlerRegistry.js',
99 'front_end/HeapSnapshotWorker.js', 99 'front_end/HeapSnapshotWorker.js',
pfeldman 2014/01/14 16:26:28 Should be in a separate section.
yurys 2014/01/15 08:30:11 Will fix this in a separate patch.
100 'front_end/HelpScreen.js', 100 'front_end/HelpScreen.js',
101 'front_end/ImageView.js', 101 'front_end/ImageView.js',
102 'front_end/IndexedDBModel.js', 102 'front_end/IndexedDBModel.js',
103 'front_end/InspectorBackend.js', 103 'front_end/InspectorBackend.js',
104 'front_end/InspectorFrontendAPI.js', 104 'front_end/InspectorFrontendAPI.js',
105 'front_end/InspectorFrontendHostStub.js', 105 'front_end/InspectorFrontendHostStub.js',
106 'front_end/InspectorView.js', 106 'front_end/InspectorView.js',
107 'front_end/inspector.js', 107 'front_end/inspector.js',
108 'front_end/IsolatedFileSystem.js', 108 'front_end/IsolatedFileSystem.js',
109 'front_end/IsolatedFileSystemManager.js', 109 'front_end/IsolatedFileSystemManager.js',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 'front_end/SourceMap.js', 166 'front_end/SourceMap.js',
167 'front_end/SourceMapping.js', 167 'front_end/SourceMapping.js',
168 'front_end/SourcesPanelDescriptor.js', 168 'front_end/SourcesPanelDescriptor.js',
169 'front_end/Spectrum.js', 169 'front_end/Spectrum.js',
170 'front_end/SplitView.js', 170 'front_end/SplitView.js',
171 'front_end/StatusBarButton.js', 171 'front_end/StatusBarButton.js',
172 'front_end/StylesSourceMapping.js', 172 'front_end/StylesSourceMapping.js',
173 'front_end/SuggestBox.js', 173 'front_end/SuggestBox.js',
174 'front_end/TabbedPane.js', 174 'front_end/TabbedPane.js',
175 'front_end/TempFile.js', 175 'front_end/TempFile.js',
176 'front_end/TempStorageSharedWorker.js',
pfeldman 2014/01/14 16:26:28 Should not be here.
yurys 2014/01/15 08:30:11 Done.
176 'front_end/TestController.js', 177 'front_end/TestController.js',
177 'front_end/TextEditor.js', 178 'front_end/TextEditor.js',
178 'front_end/TextRange.js', 179 'front_end/TextRange.js',
179 'front_end/TextPrompt.js', 180 'front_end/TextPrompt.js',
180 'front_end/TextUtils.js', 181 'front_end/TextUtils.js',
181 'front_end/TimelineGrid.js', 182 'front_end/TimelineGrid.js',
182 'front_end/TimelineManager.js', 183 'front_end/TimelineManager.js',
183 'front_end/TimelinePanelDescriptor.js', 184 'front_end/TimelinePanelDescriptor.js',
184 'front_end/TracingAgent.js', 185 'front_end/TracingAgent.js',
185 'front_end/treeoutline.js', 186 'front_end/treeoutline.js',
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 'front_end/Layers3DView.js', 462 'front_end/Layers3DView.js',
462 'front_end/LayerDetailsView.js', 463 'front_end/LayerDetailsView.js',
463 'front_end/PaintProfilerView.js', 464 'front_end/PaintProfilerView.js',
464 ], 465 ],
465 'devtools_extension_api_files': [ 466 'devtools_extension_api_files': [
466 'front_end/ExtensionAPI.js', 467 'front_end/ExtensionAPI.js',
467 'front_end/DevToolsExtensionAPI.js' 468 'front_end/DevToolsExtensionAPI.js'
468 ], 469 ],
469 }, 470 },
470 } 471 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698