| 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 } | 8 } |
| 9 | 9 |
| 10 InstantSuggestion::InstantSuggestion(const string16& in_text, | 10 InstantSuggestion::InstantSuggestion(const base::string16& in_text, |
| 11 const std::string& in_metadata) | 11 const std::string& in_metadata) |
| 12 : text(in_text), | 12 : text(in_text), |
| 13 metadata(in_metadata) { | 13 metadata(in_metadata) { |
| 14 } | 14 } |
| 15 | 15 |
| 16 InstantSuggestion::~InstantSuggestion() { | 16 InstantSuggestion::~InstantSuggestion() { |
| 17 } | 17 } |
| 18 | 18 |
| 19 RGBAColor::RGBAColor() | 19 RGBAColor::RGBAColor() |
| 20 : r(0), | 20 : r(0), |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 header_color == rhs.header_color && | 61 header_color == rhs.header_color && |
| 62 section_border_color == rhs.section_border_color && | 62 section_border_color == rhs.section_border_color && |
| 63 theme_id == rhs.theme_id && | 63 theme_id == rhs.theme_id && |
| 64 image_horizontal_alignment == rhs.image_horizontal_alignment && | 64 image_horizontal_alignment == rhs.image_horizontal_alignment && |
| 65 image_vertical_alignment == rhs.image_vertical_alignment && | 65 image_vertical_alignment == rhs.image_vertical_alignment && |
| 66 image_tiling == rhs.image_tiling && | 66 image_tiling == rhs.image_tiling && |
| 67 image_height == rhs.image_height && | 67 image_height == rhs.image_height && |
| 68 has_attribution == rhs.has_attribution && | 68 has_attribution == rhs.has_attribution && |
| 69 logo_alternate == rhs.logo_alternate; | 69 logo_alternate == rhs.logo_alternate; |
| 70 } | 70 } |
| OLD | NEW |