| Index: chrome/common/content_settings_pattern.cc
|
| diff --git a/chrome/common/content_settings_pattern.cc b/chrome/common/content_settings_pattern.cc
|
| index 9153de66ae7d151c95eb51c4def98cfb6a7b6a87..ee023120e35ca554716a0fc5591590fb4bcc4a4a 100644
|
| --- a/chrome/common/content_settings_pattern.cc
|
| +++ b/chrome/common/content_settings_pattern.cc
|
| @@ -26,7 +26,7 @@ std::string GetDefaultPort(const std::string& scheme) {
|
| return "80";
|
| if (scheme == chrome::kHttpsScheme)
|
| return "443";
|
| - return "";
|
| + return std::string();
|
| }
|
|
|
| // Returns true if |sub_domain| is a sub domain or equls |domain|. E.g.
|
| @@ -501,7 +501,7 @@ const std::string ContentSettingsPattern::ToString() const {
|
| if (IsValid())
|
| return content_settings::PatternParser::ToString(parts_);
|
| else
|
| - return "";
|
| + return std::string();
|
| }
|
|
|
| ContentSettingsPattern::Relation ContentSettingsPattern::Compare(
|
|
|