Index: remoting/host/clipboard_win.cc |
diff --git a/remoting/host/clipboard_win.cc b/remoting/host/clipboard_win.cc |
index 8d0938f32eb791d311fe16f3b2eeab7666f6b824..7549f12040131a1215d03c81415cb1d459d444a5 100644 |
--- a/remoting/host/clipboard_win.cc |
+++ b/remoting/host/clipboard_win.cc |
@@ -160,7 +160,7 @@ void ClipboardWin::Start( |
} |
if (!RegisterWindowClass()) { |
- LOG(FATAL) << "Couldn't register clipboard window class."; |
+ LOG(ERROR) << "Couldn't register clipboard window class."; |
return; |
} |
hwnd_ = ::CreateWindow(kWindowClassName, |
@@ -171,7 +171,7 @@ void ClipboardWin::Start( |
base::GetModuleFromAddress(&WndProc), |
this); |
if (!hwnd_) { |
- LOG(FATAL) << "Couldn't create clipboard window."; |
+ LOG(ERROR) << "Couldn't create clipboard window."; |
return; |
} |