js/src/devtools/gnuplot/gcTimer.gnu

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     1 # gnuplot script to visualize GCMETER results.
     2 # usage: "gnuplot gcTimer.gnu >outputfile.png"
     4 set terminal png
     5 # set Title
     6 set title "Title goes here!"
     7 set datafile missing "-"
     8 set noxtics
     9 #set ytics nomirror
    10 set ylabel "msec"
    11 set key below
    12 set style data linespoints
    14 #set data file
    15 plot 'gcTimer.dat' using 2 title columnheader(2), \
    16 '' u 3 title columnheader(3) with points, \
    17 '' u 4 title columnheader(4), \
    18 '' u 5 title columnheader(5), \
    19 '' u 6 title columnheader(6) with points, \
    20 '' u 7 title columnheader(7) with points, \
    21 '' u 8 title columnheader(8) with points, \
    22 '' u 9 title columnheader(9) with points, \
    23 '' u 10 title columnheader(10) with points, \
    24 '' u 11 title columnheader(11) with points

mercurial