| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "content/browser/renderer_host/java_bridge_channel_host.h" | 5 #include "content/browser/renderer_host/java/java_bridge_channel_host.h" |
| 6 | 6 |
| 7 #include "base/lazy_instance.h" | 7 #include "base/lazy_instance.h" |
| 8 #include "base/stringprintf.h" | 8 #include "base/stringprintf.h" |
| 9 #include "base/synchronization/waitable_event.h" | 9 #include "base/synchronization/waitable_event.h" |
| 10 | 10 |
| 11 using base::WaitableEvent; | 11 using base::WaitableEvent; |
| 12 | 12 |
| 13 namespace { | 13 namespace { |
| 14 struct WaitableEventLazyInstanceTraits | 14 struct WaitableEventLazyInstanceTraits |
| 15 : public base::DefaultLazyInstanceTraits<WaitableEvent> { | 15 : public base::DefaultLazyInstanceTraits<WaitableEvent> { |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 #endif | 57 #endif |
| 58 | 58 |
| 59 return true; | 59 return true; |
| 60 } | 60 } |
| 61 | 61 |
| 62 bool JavaBridgeChannelHost::Send(IPC::Message* msg) { | 62 bool JavaBridgeChannelHost::Send(IPC::Message* msg) { |
| 63 CHECK(!msg->is_sync() && msg->is_reply()) << | 63 CHECK(!msg->is_sync() && msg->is_reply()) << |
| 64 "Java Bridge only sends messages from renderer to browser."; | 64 "Java Bridge only sends messages from renderer to browser."; |
| 65 return NPChannelBase::Send(msg); | 65 return NPChannelBase::Send(msg); |
| 66 } | 66 } |
| OLD | NEW |