| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/text_input_client_message_filter.h" | 5 #include "content/browser/renderer_host/text_input_client_message_filter.h" |
| 6 | 6 |
| 7 #include "base/strings/string16.h" | 7 #include "base/strings/string16.h" |
| 8 #include "content/browser/renderer_host/render_view_host_impl.h" | 8 #include "content/browser/renderer_host/render_view_host_impl.h" |
| 9 #include "content/browser/renderer_host/text_input_client_mac.h" | 9 #include "content/browser/renderer_host/text_input_client_mac.h" |
| 10 #include "content/common/text_input_client_messages.h" | 10 #include "content/common/text_input_client_messages.h" |
| 11 #include "content/public/browser/render_widget_host_view.h" | 11 #include "content/public/browser/render_widget_host_view.h" |
| 12 #include "ipc/ipc_message_macros.h" | 12 #include "ipc/ipc_message_macros.h" |
| 13 #include "ui/gfx/range/range.h" | 13 #include "ui/gfx/range/range.h" |
| 14 #include "ui/gfx/rect.h" | 14 #include "ui/gfx/rect.h" |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 TextInputClientMessageFilter::TextInputClientMessageFilter(int child_id) | 18 TextInputClientMessageFilter::TextInputClientMessageFilter(int child_id) |
| 19 : BrowserMessageFilter(TextInputClientMsgStart), | 19 : BrowserMessageFilter(), |
| 20 child_process_id_(child_id) { | 20 child_process_id_(child_id) { |
| 21 } | 21 } |
| 22 | 22 |
| 23 bool TextInputClientMessageFilter::OnMessageReceived( | 23 bool TextInputClientMessageFilter::OnMessageReceived( |
| 24 const IPC::Message& message, | 24 const IPC::Message& message, |
| 25 bool* message_was_ok) { | 25 bool* message_was_ok) { |
| 26 bool handled = true; | 26 bool handled = true; |
| 27 IPC_BEGIN_MESSAGE_MAP_EX(TextInputClientMessageFilter, message, | 27 IPC_BEGIN_MESSAGE_MAP_EX(TextInputClientMessageFilter, message, |
| 28 *message_was_ok) | 28 *message_was_ok) |
| 29 IPC_MESSAGE_HANDLER(TextInputClientReplyMsg_GotCharacterIndexForPoint, | 29 IPC_MESSAGE_HANDLER(TextInputClientReplyMsg_GotCharacterIndexForPoint, |
| (...skipping 29 matching lines...) Expand all Loading... |
| 59 const mac::AttributedStringCoder::EncodedString& encoded_string) { | 59 const mac::AttributedStringCoder::EncodedString& encoded_string) { |
| 60 TextInputClientMac* service = TextInputClientMac::GetInstance(); | 60 TextInputClientMac* service = TextInputClientMac::GetInstance(); |
| 61 NSAttributedString* string = | 61 NSAttributedString* string = |
| 62 mac::AttributedStringCoder::Decode(&encoded_string); | 62 mac::AttributedStringCoder::Decode(&encoded_string); |
| 63 if (![string length]) | 63 if (![string length]) |
| 64 string = nil; | 64 string = nil; |
| 65 service->SetSubstringAndSignal(string); | 65 service->SetSubstringAndSignal(string); |
| 66 } | 66 } |
| 67 | 67 |
| 68 } // namespace content | 68 } // namespace content |
| OLD | NEW |