Chromium Code Reviews| Index: chrome/browser/sync/notifier/gaia_auth/win/win32window.cc |
| diff --git a/chrome/browser/sync/notifier/gaia_auth/win/win32window.cc b/chrome/browser/sync/notifier/gaia_auth/win/win32window.cc |
| index 25ea0a3d433537e4c627fae39dcf34a3a3213237..44c633ecaaf8c326fd7d99a17fbefeee27ed2229 100644 |
| --- a/chrome/browser/sync/notifier/gaia_auth/win/win32window.cc |
| +++ b/chrome/browser/sync/notifier/gaia_auth/win/win32window.cc |
| @@ -4,9 +4,9 @@ |
| // |
| // Originally from libjingle. Minor alterations to compile it in Chrome. |
| -#include "talk/base/common.h" |
| -#include "talk/base/logging.h" |
| #include "talk/base/win32window.h" |
| +#include "base/logging.h" |
|
brg
2009/09/23 18:14:26
You are missing a blank line betwixt this modules
ncarter (slow)
2009/09/23 20:28:36
Done.
|
| +#include "talk/base/common.h" |
| namespace talk_base { |
| @@ -42,7 +42,7 @@ bool Win32Window::Create(HWND parent, const wchar_t* title, DWORD style, |
| wcex.lpszClassName = kWindowBaseClassName; |
| window_class_ = ::RegisterClassEx(&wcex); |
| if (!window_class_) { |
| - LOG_GLE(LS_ERROR) << "RegisterClassEx failed"; |
| + LOG(ERROR) << "RegisterClassEx failed: " << GetLastError(); |
| return false; |
| } |
| } |
| @@ -97,7 +97,7 @@ LRESULT Win32Window::WndProc(HWND hwnd, UINT uMsg, |
| if (WM_DESTROY == uMsg) { |
| for (HWND child = ::GetWindow(hwnd, GW_CHILD); child; |
| child = ::GetWindow(child, GW_HWNDNEXT)) { |
| - LOG(LS_INFO) << "Child window: " << static_cast<void*>(child); |
| + LOG(INFO) << "Child window: " << static_cast<void*>(child); |
| } |
| } |
| if (WM_NCDESTROY == uMsg) { |