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

Unified Diff: chrome/common/child_process_logging_win.cc

Issue 93793010: Update uses of UTF conversions in chrome/common to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/badge_util.cc ('k') | chrome/common/chrome_version_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/child_process_logging_win.cc
diff --git a/chrome/common/child_process_logging_win.cc b/chrome/common/child_process_logging_win.cc
index 0fe9e8278efb9fe2b1fe241c30de74555e34e082..4cf9b0a8793f3cf2aac8cfda6817bd9f269c652c 100644
--- a/chrome/common/child_process_logging_win.cc
+++ b/chrome/common/child_process_logging_win.cc
@@ -34,8 +34,10 @@ void SetCrashKeyValueTrampoline(const base::StringPiece& key,
GetProcAddress(exe_module, "SetCrashKeyValueImpl"));
}
- if (set_crash_key)
- (set_crash_key)(UTF8ToWide(key).data(), UTF8ToWide(value).data());
+ if (set_crash_key) {
+ (set_crash_key)(base::UTF8ToWide(key).data(),
+ base::UTF8ToWide(value).data());
+ }
}
void ClearCrashKeyValueTrampoline(const base::StringPiece& key) {
@@ -49,7 +51,7 @@ void ClearCrashKeyValueTrampoline(const base::StringPiece& key) {
}
if (clear_crash_key)
- (clear_crash_key)(UTF8ToWide(key).data());
+ (clear_crash_key)(base::UTF8ToWide(key).data());
}
} // namespace
« no previous file with comments | « chrome/common/badge_util.cc ('k') | chrome/common/chrome_version_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698