OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "content/public/common/renderer_preferences.h" | 5 #include "content/public/common/renderer_preferences.h" |
6 | 6 |
7 #include "third_party/skia/include/core/SkColor.h" | 7 #include "third_party/skia/include/core/SkColor.h" |
8 #include "ui/gfx/font_render_params.h" | 8 #include "ui/gfx/font_render_params.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 , caption_font_height(0), | 44 , caption_font_height(0), |
45 small_caption_font_height(0), | 45 small_caption_font_height(0), |
46 menu_font_height(0), | 46 menu_font_height(0), |
47 status_font_height(0), | 47 status_font_height(0), |
48 message_font_height(0), | 48 message_font_height(0), |
49 vertical_scroll_bar_width_in_dips(0), | 49 vertical_scroll_bar_width_in_dips(0), |
50 horizontal_scroll_bar_height_in_dips(0), | 50 horizontal_scroll_bar_height_in_dips(0), |
51 arrow_bitmap_height_vertical_scroll_bar_in_dips(0), | 51 arrow_bitmap_height_vertical_scroll_bar_in_dips(0), |
52 arrow_bitmap_width_horizontal_scroll_bar_in_dips(0) | 52 arrow_bitmap_width_horizontal_scroll_bar_in_dips(0) |
53 #endif | 53 #endif |
| 54 , default_font_size(0) |
54 {} | 55 {} |
55 | 56 |
56 RendererPreferences::~RendererPreferences() { } | 57 RendererPreferences::~RendererPreferences() { } |
57 | 58 |
58 } // namespace content | 59 } // namespace content |
OLD | NEW |