Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: chrome/common/instant_types.cc

Issue 105473003: Add explicit base namespace to string16 users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/instant_types.h ('k') | chrome/common/localized_error.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/common/instant_types.h ('k') | chrome/common/localized_error.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698