diff options
author | vitalybuka@chromium.org <vitalybuka@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-21 20:06:23 +0000 |
---|---|---|
committer | vitalybuka@chromium.org <vitalybuka@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-21 20:06:23 +0000 |
commit | ad8cfa996623e585ea16665fc18db174fe947121 (patch) | |
tree | c44f98c608a090dccfc90aa81c95c814f26a7775 /remoting/tools | |
parent | 0f4dffbf1a776c3bdd124be30e983247fb4d6896 (diff) | |
download | chromium_src-ad8cfa996623e585ea16665fc18db174fe947121.zip chromium_src-ad8cfa996623e585ea16665fc18db174fe947121.tar.gz chromium_src-ad8cfa996623e585ea16665fc18db174fe947121.tar.bz2 |
Removed LOG_GETLASTERROR and LOG_ERRNO macros.
Most code uses PLOG with the same effect.
TBR=bradchen
NOTRY=true
Review URL: https://codereview.chromium.org/281223002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271949 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/tools')
-rw-r--r-- | remoting/tools/breakpad_tester_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/tools/breakpad_tester_win.cc b/remoting/tools/breakpad_tester_win.cc index b87d878..846d61e 100644 --- a/remoting/tools/breakpad_tester_win.cc +++ b/remoting/tools/breakpad_tester_win.cc @@ -64,7 +64,7 @@ int main(int argc, char** argv) { base::win::ScopedHandle process; process.Set(OpenProcess(desired_access, FALSE, pid)); if (!process.IsValid()) { - LOG_GETLASTERROR(ERROR) << "Failed to open the process " << pid; + PLOG(ERROR) << "Failed to open the process " << pid; return kErrorExitCode; } @@ -73,7 +73,7 @@ int main(int argc, char** argv) { thread.Set(CreateRemoteThread(process.Get(), NULL, 0, NULL, NULL, 0, &thread_id)); if (!thread.IsValid()) { - LOG_GETLASTERROR(ERROR) << "Failed to create a remote thread in " << pid; + PLOG(ERROR) << "Failed to create a remote thread in " << pid; return kErrorExitCode; } |