diff options
Diffstat (limited to 'chrome/common/jstemplate_builder.cc')
-rw-r--r-- | chrome/common/jstemplate_builder.cc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/chrome/common/jstemplate_builder.cc b/chrome/common/jstemplate_builder.cc index 31c0c4d..9d0d46b 100644 --- a/chrome/common/jstemplate_builder.cc +++ b/chrome/common/jstemplate_builder.cc @@ -12,7 +12,6 @@ #include "base/logging.h" #include "base/string_util.h" #include "grit/common_resources.h" -#include "ui/base/layout.h" #include "ui/base/resource/resource_bundle.h" namespace { @@ -92,7 +91,7 @@ void AppendJsTemplateSourceHtml(std::string* output) { // fetch and cache the pointer of the jstemplate resource source text. static const base::StringPiece jstemplate_src( ResourceBundle::GetSharedInstance().GetRawDataResource( - IDR_JSTEMPLATE_JS, ui::SCALE_FACTOR_NONE)); + IDR_JSTEMPLATE_JS)); if (jstemplate_src.empty()) { NOTREACHED() << "Unable to get jstemplate src"; @@ -118,10 +117,10 @@ void AppendI18nTemplateSourceHtml(std::string* output) { // fetch and cache the pointer of the jstemplate resource source text. static const base::StringPiece i18n_template_src( ResourceBundle::GetSharedInstance().GetRawDataResource( - IDR_I18N_TEMPLATE_JS, ui::SCALE_FACTOR_NONE)); + IDR_I18N_TEMPLATE_JS)); static const base::StringPiece i18n_template2_src( ResourceBundle::GetSharedInstance().GetRawDataResource( - IDR_I18N_TEMPLATE2_JS, ui::SCALE_FACTOR_NONE)); + IDR_I18N_TEMPLATE2_JS)); const base::StringPiece* template_src = g_version2 ? &i18n_template2_src : &i18n_template_src; @@ -141,7 +140,7 @@ void AppendI18nTemplateProcessHtml(std::string* output) { static const base::StringPiece i18n_process_src( ResourceBundle::GetSharedInstance().GetRawDataResource( - IDR_I18N_PROCESS_JS, ui::SCALE_FACTOR_NONE)); + IDR_I18N_PROCESS_JS)); if (i18n_process_src.empty()) { NOTREACHED() << "Unable to get i18n process src"; |