Commit d3581cab authored by estade@chromium.org's avatar estade@chromium.org

s/seperator/separator in a couple places

BUG=343616

Review URL: https://codereview.chromium.org/164403002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@251312 0039d316-1c4b-4281-b951-d872f2087c98
parent 46258935
...@@ -7122,7 +7122,7 @@ Keep your key file in a safe place. You will need it to create new versions of y ...@@ -7122,7 +7122,7 @@ Keep your key file in a safe place. You will need it to create new versions of y
<message name="IDS_CONFLICTS_CHECK_POSSIBLE_ACTION_DISABLE" desc="A disable label. 'It' refers to 'a module'."> <message name="IDS_CONFLICTS_CHECK_POSSIBLE_ACTION_DISABLE" desc="A disable label. 'It' refers to 'a module'.">
Disabling Disabling
</message> </message>
<message name="IDS_CONFLICTS_CHECK_POSSIBLE_ACTION_SEPERATOR" desc="The separator separating the words 'Uninstalling it', 'Updating it' and 'Disabling it'"> <message name="IDS_CONFLICTS_CHECK_POSSIBLE_ACTION_SEPARATOR" desc="The separator separating the words 'Uninstalling it', 'Updating it' and 'Disabling it'">
/ /
</message> </message>
<message name="IDS_CONFLICTS_NO_MODULES_LOADED" desc="Error message for when no modules were found in the process"> <message name="IDS_CONFLICTS_NO_MODULES_LOADED" desc="Error message for when no modules were found in the process">
......
...@@ -906,7 +906,7 @@ base::ListValue* EnumerateModulesModel::GetModuleList() const { ...@@ -906,7 +906,7 @@ base::ListValue* EnumerateModulesModel::GetModuleList() const {
base::string16 actions; base::string16 actions;
base::string16 separator = base::ASCIIToWide(" ") + base::string16 separator = base::ASCIIToWide(" ") +
l10n_util::GetStringUTF16( l10n_util::GetStringUTF16(
IDS_CONFLICTS_CHECK_POSSIBLE_ACTION_SEPERATOR) + IDS_CONFLICTS_CHECK_POSSIBLE_ACTION_SEPARATOR) +
base::ASCIIToWide(" "); base::ASCIIToWide(" ");
if (module->recommended_action & ModuleEnumerator::NONE) { if (module->recommended_action & ModuleEnumerator::NONE) {
......
...@@ -174,11 +174,11 @@ class ITunesDataProviderTest : public InProcessBrowserTest { ...@@ -174,11 +174,11 @@ class ITunesDataProviderTest : public InProcessBrowserTest {
return; return;
std::string xml = "<plist><dict><key>Tracks</key><dict>\n"; std::string xml = "<plist><dict><key>Tracks</key><dict>\n";
for (size_t i = 0; i < entries.size(); ++i) { for (size_t i = 0; i < entries.size(); ++i) {
std::string seperator; std::string separator;
#if defined(OS_WIN) #if defined(OS_WIN)
seperator = "/"; separator = "/";
#endif #endif
GURL location("file://localhost" + seperator + GURL location("file://localhost" + separator +
entries[i].location.AsUTF8Unsafe()); entries[i].location.AsUTF8Unsafe());
std::string entry_string = base::StringPrintf( std::string entry_string = base::StringPrintf(
"<key>%" PRIuS "</key><dict>\n" "<key>%" PRIuS "</key><dict>\n"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment