Home | History | Annotate | Download | only in tracing
      1 <!--
      2 Copyright (c) 2013 The Chromium Authors. All rights reserved.
      3 Use of this source code is governed by a BSD-style license that can be
      4 found in the LICENSE file.
      5 -->
      6 
      7 <template id="record-selection-dialog-template">
      8   <div class="record-selection-dialog">
      9     <form>
     10       <table>
     11         <tr>
     12           <td class="default-enabled-categories">
     13             <div>Record&nbsp;Categories</div>
     14             <div class="group-selectors">
     15               Select
     16               <button class="all-btn">All</button>
     17               <button class="none-btn">None</button>
     18             </div>
     19             <div class="categories"></div>
     20           </td>
     21           <td class="default-disabled-categories">
     22             <div>Disabled&nbsp;by&nbsp;Default&nbsp;Categories</div>
     23             <div class="group-selectors">
     24               Select
     25               <button class="all-btn">All</button>
     26               <button class="none-btn">None</button>
     27             </div>
     28             <div class="categories"></div>
     29           </td>
     30         </tr>
     31       </table>
     32     </form>
     33 
     34     <div class="options">
     35       <button class="record-categories">Record</button>
     36       <label class="continuous-tracing-label">
     37         Continuous tracing
     38         <input type="checkbox" value="continuousTracing" checked="checked"
     39                class="continuous-tracing-button" />
     40       </label>
     41       <label class="system-tracing-label">
     42         System events
     43         <input type="checkbox" value="systemTracing"
     44                class="system-tracing-button" />
     45       </label>
     46       <label class="sampling-label">
     47         Enable sampling
     48         <input type="checkbox" value="enableSampling" class="sampling-button" />
     49       </label>
     50     </div>
     51   </div>
     52 </template>
     53