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

Side by Side Diff: chrome/common/jstemplate_builder.cc

Issue 159026: Fix issue where the i18n template logic was not applied to the document eleme... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 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 | « no previous file | 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 (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // A helper function for using JsTemplate. See jstemplate_builder.h for more 5 // A helper function for using JsTemplate. See jstemplate_builder.h for more
6 // info. 6 // info.
7 7
8 #include "chrome/common/jstemplate_builder.h" 8 #include "chrome/common/jstemplate_builder.h"
9 9
10 #include "app/resource_bundle.h" 10 #include "app/resource_bundle.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 return; 101 return;
102 } 102 }
103 103
104 output->append("<script>"); 104 output->append("<script>");
105 output->append(i18n_template_src.data(), i18n_template_src.size()); 105 output->append(i18n_template_src.data(), i18n_template_src.size());
106 output->append("</script>"); 106 output->append("</script>");
107 } 107 }
108 108
109 void AppendI18nTemplateProcessHtml(std::string* output) { 109 void AppendI18nTemplateProcessHtml(std::string* output) {
110 output->append("<script>"); 110 output->append("<script>");
111 output->append("i18nTemplate.process(document.documentElement, "); 111 output->append("i18nTemplate.process(document, ");
112 output->append("templateData);"); 112 output->append("templateData);");
113 output->append("</script>"); 113 output->append("</script>");
114 } 114 }
115 115
116 } // namespace jstemplate_builder 116 } // namespace jstemplate_builder
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698