OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // Originally from libjingle. Minor alterations to compile it in Chrome. | 5 // Originally from libjingle. Minor alterations to compile it in Chrome. |
6 | 6 |
7 #include "talk/base/common.h" | 7 #include "talk/base/common.h" |
8 #include "talk/base/logging.h" | 8 #include "talk/base/logging.h" |
9 #include "talk/base/win32window.h" | 9 #include "talk/base/win32window.h" |
10 | 10 |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 that->OnDestroyed(); | 106 that->OnDestroyed(); |
107 } | 107 } |
108 if (handled) { | 108 if (handled) { |
109 return result; | 109 return result; |
110 } | 110 } |
111 } | 111 } |
112 return ::DefWindowProc(hwnd, uMsg, wParam, lParam); | 112 return ::DefWindowProc(hwnd, uMsg, wParam, lParam); |
113 } | 113 } |
114 | 114 |
115 } // namespace talk_base | 115 } // namespace talk_base |
OLD | NEW |