| Index: chrome/common/renderer_preferences.h
|
| ===================================================================
|
| --- chrome/common/renderer_preferences.h (revision 34187)
|
| +++ chrome/common/renderer_preferences.h (working copy)
|
| @@ -51,6 +51,12 @@
|
| // The color of the focus ring. Currently only used on Linux.
|
| SkColor focus_ring_color;
|
|
|
| + // The color of different parts of the scrollbar. Currently only used on
|
| + // Linux.
|
| + SkColor thumb_active_color;
|
| + SkColor thumb_inactive_color;
|
| + SkColor track_color;
|
| +
|
| // Browser wants a look at all top level requests
|
| bool browser_handles_top_level_requests;
|
|
|
| @@ -61,6 +67,9 @@
|
| subpixel_rendering(
|
| RENDERER_PREFERENCES_SUBPIXEL_RENDERING_SYSTEM_DEFAULT),
|
| focus_ring_color(0),
|
| + thumb_active_color(0),
|
| + thumb_inactive_color(0),
|
| + track_color(0),
|
| browser_handles_top_level_requests(false) {
|
| }
|
| };
|
|
|