| Index: third_party/WebKit/Source/devtools/front_end/perf_ui/TimelineGrid.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/perf_ui/TimelineGrid.js b/third_party/WebKit/Source/devtools/front_end/perf_ui/TimelineGrid.js
|
| index 7d25f6358ab0ab12f843285d62e6eeb49000a4be..612cea999149bc7fc61ec90b0e51340663d34ba6 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/perf_ui/TimelineGrid.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/perf_ui/TimelineGrid.js
|
| @@ -111,12 +111,13 @@ PerfUI.TimelineGrid = class {
|
| var precision = dividersData.precision;
|
|
|
| if (headerHeight) {
|
| - context.fillStyle = UI.themeSupport.patchColor('rgba(255, 255, 255, 0.5)', UI.ThemeSupport.ColorUsage.Background);
|
| + context.fillStyle =
|
| + UI.themeSupport.patchColorText('rgba(255, 255, 255, 0.5)', UI.ThemeSupport.ColorUsage.Background);
|
| context.fillRect(0, 0, width, headerHeight);
|
| }
|
|
|
| - context.fillStyle = UI.themeSupport.patchColor('#333', UI.ThemeSupport.ColorUsage.Foreground);
|
| - context.strokeStyle = UI.themeSupport.patchColor('rgba(0, 0, 0, 0.1)', UI.ThemeSupport.ColorUsage.Foreground);
|
| + context.fillStyle = UI.themeSupport.patchColorText('#333', UI.ThemeSupport.ColorUsage.Foreground);
|
| + context.strokeStyle = UI.themeSupport.patchColorText('rgba(0, 0, 0, 0.1)', UI.ThemeSupport.ColorUsage.Foreground);
|
| context.textBaseline = 'hanging';
|
| context.font = '11px ' + Host.fontFamily();
|
| context.lineWidth = 1;
|
|
|