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

Unified Diff: remoting/base/breakpad_win_unittest.cc

Issue 121123002: Update uses of UTF conversions in ppapi/, printing/, remoting/, rlz/, sandbox/, skia/, sql/, sync/,… (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 | « remoting/base/breakpad_win.cc ('k') | remoting/host/clipboard_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/breakpad_win_unittest.cc
diff --git a/remoting/base/breakpad_win_unittest.cc b/remoting/base/breakpad_win_unittest.cc
index 53f5a8d1731fa73ce7c5ed1f78e9d6a3749cb6f9..9f93f781a315a02ee34cb8604f6c9868138bb89b 100644
--- a/remoting/base/breakpad_win_unittest.cc
+++ b/remoting/base/breakpad_win_unittest.cc
@@ -91,7 +91,7 @@ void BreakpadWinDeathTest::SetUp() {
if (environment->GetVar(kPipeVariableName, &pipe_name)) {
// This is a child process. Initialize crash dump reporting to the crash
// dump server.
- pipe_name_ = UTF8ToWide(pipe_name);
+ pipe_name_ = base::UTF8ToWide(pipe_name);
InitializeCrashReportingForTest(pipe_name_.c_str());
} else {
// This is the parent process. Generate a unique pipe name and setup
@@ -116,7 +116,7 @@ void BreakpadWinDeathTest::SetUp() {
guid.Data4[6],
guid.Data4[7]);
EXPECT_TRUE(environment->SetVar(kPipeVariableName,
- WideToUTF8(pipe_name_)));
+ base::WideToUTF8(pipe_name_)));
// Setup a dummy crash dump server.
callbacks_.reset(new MockCrashServerCallbacks());
« no previous file with comments | « remoting/base/breakpad_win.cc ('k') | remoting/host/clipboard_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698