| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "chrome/common/instant_types.h" | 5 #include "chrome/common/instant_types.h" |
| 6 | 6 |
| 7 InstantSuggestion::InstantSuggestion() | 7 InstantSuggestion::InstantSuggestion() |
| 8 : behavior(INSTANT_COMPLETE_NOW), | 8 : behavior(INSTANT_COMPLETE_NOW), |
| 9 type(INSTANT_SUGGESTION_SEARCH) { | 9 type(INSTANT_SUGGESTION_SEARCH) { |
| 10 } | 10 } |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 color_a(0), | 37 color_a(0), |
| 38 image_horizontal_alignment(THEME_BKGRND_IMAGE_ALIGN_CENTER), | 38 image_horizontal_alignment(THEME_BKGRND_IMAGE_ALIGN_CENTER), |
| 39 image_vertical_alignment(THEME_BKGRND_IMAGE_ALIGN_CENTER), | 39 image_vertical_alignment(THEME_BKGRND_IMAGE_ALIGN_CENTER), |
| 40 image_tiling(THEME_BKGRND_IMAGE_NO_REPEAT), | 40 image_tiling(THEME_BKGRND_IMAGE_NO_REPEAT), |
| 41 image_height(0), | 41 image_height(0), |
| 42 has_attribution(false) { | 42 has_attribution(false) { |
| 43 } | 43 } |
| 44 | 44 |
| 45 ThemeBackgroundInfo::~ThemeBackgroundInfo() { | 45 ThemeBackgroundInfo::~ThemeBackgroundInfo() { |
| 46 } | 46 } |
| 47 | |
| 48 InstantAutocompleteResultStyle::InstantAutocompleteResultStyle() | |
| 49 : url_color(0x009933), | |
| 50 title_color(0x666666) { | |
| 51 } | |
| 52 | |
| 53 InstantAutocompleteResultStyle::~InstantAutocompleteResultStyle() { | |
| 54 } | |
| OLD | NEW |