Index: content/child/blink_platform_impl.cc |
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc |
index 1fbb0a5439a65e14c143a9b8a700405994d01417..41f46d498aef84c6e91b511b56d3941261746e2c 100644 |
--- a/content/child/blink_platform_impl.cc |
+++ b/content/child/blink_platform_impl.cc |
@@ -1110,8 +1110,8 @@ WebString BlinkPlatformImpl::queryLocalizedString( |
int message_id = ToMessageID(name); |
if (message_id < 0) |
return WebString(); |
- return ReplaceStringPlaceholders(GetContentClient()->GetLocalizedString( |
- message_id), value, NULL); |
+ return base::ReplaceStringPlaceholders( |
+ GetContentClient()->GetLocalizedString(message_id), value, NULL); |
} |
WebString BlinkPlatformImpl::queryLocalizedString( |
@@ -1125,7 +1125,7 @@ WebString BlinkPlatformImpl::queryLocalizedString( |
values.reserve(2); |
values.push_back(value1); |
values.push_back(value2); |
- return ReplaceStringPlaceholders( |
+ return base::ReplaceStringPlaceholders( |
GetContentClient()->GetLocalizedString(message_id), values, NULL); |
} |