browser/devtools/profiler/profiler.xul

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/devtools/profiler/profiler.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,53 @@
     1.4 +<?xml version="1.0" encoding="utf-8"?>
     1.5 +
     1.6 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.9 +
    1.10 +<?xml-stylesheet href="chrome://global/skin/global.css"?>
    1.11 +<?xml-stylesheet href="chrome://browser/skin/devtools/common.css"?>
    1.12 +<?xml-stylesheet href="chrome://browser/skin/devtools/widgets.css"?>
    1.13 +<?xml-stylesheet href="chrome://browser/skin/devtools/profiler.css"?>
    1.14 +<?xml-stylesheet href="chrome://browser/content/devtools/widgets.css"?>
    1.15 +
    1.16 +<!DOCTYPE window [
    1.17 +<!ENTITY % profilerDTD SYSTEM "chrome://browser/locale/devtools/profiler.dtd">
    1.18 +  %profilerDTD;
    1.19 +]>
    1.20 +
    1.21 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    1.22 +
    1.23 +  <script type="application/javascript;version=1.8"
    1.24 +          src="chrome://browser/content/devtools/theme-switching.js"/>
    1.25 +  <script type="text/javascript" src="sidebar.js"/>
    1.26 +  <box flex="1" id="profiler-chrome"
    1.27 +    class="devtools-responsive-container theme-body">
    1.28 +    <vbox class="profiler-sidebar theme-sidebar">
    1.29 +      <toolbar class="devtools-toolbar">
    1.30 +        <hbox id="profiler-controls"
    1.31 +              class="devtools-toolbarbutton-group">
    1.32 +          <toolbarbutton id="profiler-start"
    1.33 +            tooltiptext="&startProfiler.tooltip;"
    1.34 +            class="devtools-toolbarbutton"
    1.35 +            disabled="true"/>
    1.36 +          <toolbarbutton id="profiler-import"
    1.37 +            class="devtools-toolbarbutton"
    1.38 +            disabled="true"
    1.39 +            label="&importProfile.label;"/>
    1.40 +        </hbox>
    1.41 +      </toolbar>
    1.42 +
    1.43 +      <vbox id="profiles-list" flex="1">
    1.44 +      </vbox>
    1.45 +    </vbox>
    1.46 +
    1.47 +    <splitter class="devtools-side-splitter devtools-invisible-splitter"/>
    1.48 +
    1.49 +    <vbox flex="1" id="profiler-report">
    1.50 +      <!-- Example:
    1.51 +      <iframe id="profiler-cleo-1"
    1.52 +        src="devtools/cleopatra.html" flex="1"></iframe>
    1.53 +      -->
    1.54 +    </vbox>
    1.55 +  </box>
    1.56 +</window>

mercurial