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

Side by Side Diff: ui/base/template_expressions.h

Issue 1647583003: Revert of [Template Expressions] changing ${ leader to $i18n{ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « chrome/browser/web_dev_style/css_checker.py ('k') | ui/base/template_expressions.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 // This file defines utility functions for replacing template expressions. 5 // This file defines utility functions for replacing template expressions.
6 // For example "Hello ${name}" could have ${name} replaced by the user's name. 6 // For example "Hello ${name}" could have ${name} replaced by the user's name.
7 7
8 #ifndef UI_BASE_TEMPLATE_EXPRESSIONS_H_ 8 #ifndef UI_BASE_TEMPLATE_EXPRESSIONS_H_
9 #define UI_BASE_TEMPLATE_EXPRESSIONS_H_ 9 #define UI_BASE_TEMPLATE_EXPRESSIONS_H_
10 10
11 #include <map> 11 #include <map>
12 #include <string> 12 #include <string>
13 13
14 #include "base/strings/string_piece.h" 14 #include "base/strings/string_piece.h"
15 #include "ui/base/ui_base_export.h" 15 #include "ui/base/ui_base_export.h"
16 16
17 namespace ui { 17 namespace ui {
18 18
19 // Map of strings for template replacement in |ReplaceTemplateExpressions|.
20 typedef std::map<const std::string, std::string> TemplateReplacements;
21
22 // Replace ${foo} in the format string with the value for the foo key in 19 // Replace ${foo} in the format string with the value for the foo key in
23 // |subst|. If the key is not found in the |substitutions| that item will 20 // |subst|. If the key is not found in the |substitutions| that item will
24 // be unaltered. 21 // be unaltered.
25 UI_BASE_EXPORT std::string ReplaceTemplateExpressions( 22 UI_BASE_EXPORT std::string ReplaceTemplateExpressions(
26 base::StringPiece format_string, 23 base::StringPiece format_string,
27 const TemplateReplacements& substitutions); 24 const std::map<base::StringPiece, std::string>& substitutions);
28 25
29 } // namespace ui 26 } // namespace ui
30 27
31 #endif // UI_BASE_TEMPLATE_EXPRESSIONS_H_ 28 #endif // UI_BASE_TEMPLATE_EXPRESSIONS_H_
OLDNEW
« no previous file with comments | « chrome/browser/web_dev_style/css_checker.py ('k') | ui/base/template_expressions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698