Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/plugin/PluginUtil.cpp

Issue 11276031: FRP wrappers. "Update" menu item. (Closed)
Patch Set: GetAppLocale is now retrieved directly from the browser. Get documentation link change. Manual Upda… Created Aug. 5, 2013, 8:03 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/plugin/PluginUtil.cpp
===================================================================
--- a/src/plugin/PluginUtil.cpp
+++ b/src/plugin/PluginUtil.cpp
@@ -52,13 +52,4 @@
CString domain = url.Tokenize(L"/", pos);
domain.MakeLower();
return domain;
-}
-
-void ReplaceString(std::wstring& input, const std::wstring placeholder, const std::wstring replacement)
-{
- size_t replaceStart = input.find(placeholder);
- if (replaceStart != std::string::npos)
- {
- input.replace(replaceStart, placeholder.length(), replacement);
- }
}

Powered by Google App Engine
This is Rietveld