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 | 8 |
9 namespace content { | 9 namespace content { |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 active_selection_bg_color(SkColorSetRGB(30, 144, 255)), | 24 active_selection_bg_color(SkColorSetRGB(30, 144, 255)), |
25 active_selection_fg_color(SK_ColorWHITE), | 25 active_selection_fg_color(SK_ColorWHITE), |
26 inactive_selection_bg_color(SkColorSetRGB(200, 200, 200)), | 26 inactive_selection_bg_color(SkColorSetRGB(200, 200, 200)), |
27 inactive_selection_fg_color(SkColorSetRGB(50, 50, 50)), | 27 inactive_selection_fg_color(SkColorSetRGB(50, 50, 50)), |
28 browser_handles_non_local_top_level_requests(false), | 28 browser_handles_non_local_top_level_requests(false), |
29 browser_handles_all_top_level_requests(false), | 29 browser_handles_all_top_level_requests(false), |
30 caret_blink_interval(0), | 30 caret_blink_interval(0), |
31 enable_referrers(true), | 31 enable_referrers(true), |
32 enable_do_not_track(false), | 32 enable_do_not_track(false), |
33 default_zoom_level(0), | 33 default_zoom_level(0), |
34 throttle_input_events(true) { | 34 throttle_input_events(true), |
| 35 report_frame_name_changes(false) { |
35 } | 36 } |
36 | 37 |
37 } // namespace content | 38 } // namespace content |
OLD | NEW |