| Index: content/shell/shell_content_client.cc
|
| ===================================================================
|
| --- content/shell/shell_content_client.cc (revision 149002)
|
| +++ content/shell/shell_content_client.cc (working copy)
|
| @@ -5,6 +5,7 @@
|
| #include "content/shell/shell_content_client.h"
|
|
|
| #include "base/string_piece.h"
|
| +#include "ui/base/l10n/l10n_util.h"
|
| #include "ui/base/resource/resource_bundle.h"
|
| #include "webkit/glue/user_agent.h"
|
|
|
| @@ -20,6 +21,10 @@
|
| return webkit_glue::BuildUserAgentFromProduct("Chrome/19.77.34.5");
|
| }
|
|
|
| +string16 ShellContentClient::GetLocalizedString(int message_id) const {
|
| + return ResourceBundle::GetSharedInstance().GetLocalizedString(message_id);
|
| +}
|
| +
|
| base::StringPiece ShellContentClient::GetDataResource(
|
| int resource_id,
|
| ui::ScaleFactor scale_factor) const {
|
|
|