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

Side by Side Diff: webkit/common/database/database_identifier.cc

Issue 448853002: Move StringToLowerASCII to base namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months 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 | « ui/gl/gl_version_info.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "webkit/common/database/database_identifier.h" 5 #include "webkit/common/database/database_identifier.h"
6 6
7 #include "base/strings/string_number_conversions.h" 7 #include "base/strings/string_number_conversions.h"
8 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
9 #include "url/url_canon.h" 9 #include "url/url_canon.h"
10 10
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 is_unique_(true), 109 is_unique_(true),
110 is_file_(false) { 110 is_file_(false) {
111 } 111 }
112 112
113 DatabaseIdentifier::DatabaseIdentifier(const std::string& scheme, 113 DatabaseIdentifier::DatabaseIdentifier(const std::string& scheme,
114 const std::string& hostname, 114 const std::string& hostname,
115 int port, 115 int port,
116 bool is_unique, 116 bool is_unique,
117 bool is_file) 117 bool is_file)
118 : scheme_(scheme), 118 : scheme_(scheme),
119 hostname_(StringToLowerASCII(hostname)), 119 hostname_(base::StringToLowerASCII(hostname)),
120 port_(port), 120 port_(port),
121 is_unique_(is_unique), 121 is_unique_(is_unique),
122 is_file_(is_file) { 122 is_file_(is_file) {
123 } 123 }
124 124
125 DatabaseIdentifier::~DatabaseIdentifier() {} 125 DatabaseIdentifier::~DatabaseIdentifier() {}
126 126
127 std::string DatabaseIdentifier::ToString() const { 127 std::string DatabaseIdentifier::ToString() const {
128 if (is_file_) 128 if (is_file_)
129 return "file__0"; 129 return "file__0";
130 if (is_unique_) 130 if (is_unique_)
131 return "__0"; 131 return "__0";
132 return scheme_ + "_" + hostname_ + "_" + base::IntToString(port_); 132 return scheme_ + "_" + hostname_ + "_" + base::IntToString(port_);
133 } 133 }
134 134
135 GURL DatabaseIdentifier::ToOrigin() const { 135 GURL DatabaseIdentifier::ToOrigin() const {
136 if (is_file_) 136 if (is_file_)
137 return GURL("file:///"); 137 return GURL("file:///");
138 if (is_unique_) 138 if (is_unique_)
139 return GURL(); 139 return GURL();
140 if (port_ == 0) 140 if (port_ == 0)
141 return GURL(scheme_ + "://" + hostname_); 141 return GURL(scheme_ + "://" + hostname_);
142 return GURL(scheme_ + "://" + hostname_ + ":" + base::IntToString(port_)); 142 return GURL(scheme_ + "://" + hostname_ + ":" + base::IntToString(port_));
143 } 143 }
144 144
145 } // namespace webkit_database 145 } // namespace webkit_database
OLDNEW
« no previous file with comments | « ui/gl/gl_version_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698