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

Unified Diff: content/browser/renderer_host/text_input_client_message_filter.mm

Issue 10068037: RefCounted types should not have public destructors, content/browser part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MSVC fixes Created 8 years, 8 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
Index: content/browser/renderer_host/text_input_client_message_filter.mm
diff --git a/content/browser/renderer_host/text_input_client_message_filter.mm b/content/browser/renderer_host/text_input_client_message_filter.mm
index efc2ac9124e54573ae7514fe6d5c06e58db5d816..e577f274014e50e40258b4610a9567d38b8b762a 100644
--- a/content/browser/renderer_host/text_input_client_message_filter.mm
+++ b/content/browser/renderer_host/text_input_client_message_filter.mm
@@ -22,9 +22,6 @@ TextInputClientMessageFilter::TextInputClientMessageFilter(int child_id)
child_process_id_(child_id) {
}
-TextInputClientMessageFilter::~TextInputClientMessageFilter() {
-}
-
bool TextInputClientMessageFilter::OnMessageReceived(
const IPC::Message& message,
bool* message_was_ok) {
@@ -42,6 +39,8 @@ bool TextInputClientMessageFilter::OnMessageReceived(
return handled;
}
+TextInputClientMessageFilter::~TextInputClientMessageFilter() {}
+
void TextInputClientMessageFilter::OnGotCharacterIndexForPoint(size_t index) {
TextInputClientMac* service = TextInputClientMac::GetInstance();
// |index| could be WTF::notFound (-1) and its value is different from
« no previous file with comments | « content/browser/renderer_host/text_input_client_message_filter.h ('k') | content/browser/resolve_proxy_msg_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698