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

Unified Diff: chrome/browser/sync/notifier/gaia_auth/win/win32window.cc

Issue 225001: Use base/logging from chrome/browser/sync. Add a macro to libjingle's (Closed)
Patch Set: Added README.chromium Created 11 years, 3 months 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/browser/sync/notifier/gaia_auth/gaiahelper.cc ('k') | third_party/libjingle/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « chrome/browser/sync/notifier/gaia_auth/gaiahelper.cc ('k') | third_party/libjingle/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698