1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/spellcheck_message_filter.h"
#include "chrome/browser/spellchecker_platform_engine.h"
#include "chrome/common/spellcheck_messages.h"
SpellCheckMessageFilter::SpellCheckMessageFilter() {
}
SpellCheckMessageFilter::~SpellCheckMessageFilter() {
}
bool SpellCheckMessageFilter::OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP_EX(SpellCheckMessageFilter, message, *message_was_ok)
IPC_MESSAGE_HANDLER(SpellCheckHostMsg_PlatformCheckSpelling,
OnPlatformCheckSpelling)
IPC_MESSAGE_HANDLER(SpellCheckHostMsg_PlatformFillSuggestionList,
OnPlatformFillSuggestionList)
IPC_MESSAGE_HANDLER(SpellCheckHostMsg_GetDocumentTag, OnGetDocumentTag)
IPC_MESSAGE_HANDLER(SpellCheckHostMsg_DocumentWithTagClosed,
OnDocumentWithTagClosed)
IPC_MESSAGE_HANDLER(SpellCheckHostMsg_ShowSpellingPanel,
OnShowSpellingPanel)
IPC_MESSAGE_HANDLER(SpellCheckHostMsg_UpdateSpellingPanelWithMisspelledWord,
OnUpdateSpellingPanelWithMisspelledWord)
IPC_MESSAGE_HANDLER(SpellCheckHostMsg_PlatformRequestTextCheck,
OnPlatformRequestTextCheck)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void SpellCheckMessageFilter::OnPlatformCheckSpelling(const string16& word,
int tag,
bool* correct) {
*correct = SpellCheckerPlatform::CheckSpelling(word, tag);
}
void SpellCheckMessageFilter::OnPlatformFillSuggestionList(
const string16& word,
std::vector<string16>* suggestions) {
SpellCheckerPlatform::FillSuggestionList(word, suggestions);
}
void SpellCheckMessageFilter::OnGetDocumentTag(int* tag) {
*tag = SpellCheckerPlatform::GetDocumentTag();
}
void SpellCheckMessageFilter::OnDocumentWithTagClosed(int tag) {
SpellCheckerPlatform::CloseDocumentWithTag(tag);
}
void SpellCheckMessageFilter::OnShowSpellingPanel(bool show) {
SpellCheckerPlatform::ShowSpellingPanel(show);
}
void SpellCheckMessageFilter::OnUpdateSpellingPanelWithMisspelledWord(
const string16& word) {
SpellCheckerPlatform::UpdateSpellingPanelWithMisspelledWord(word);
}
void SpellCheckMessageFilter::OnPlatformRequestTextCheck(
int route_id,
int identifier,
int document_tag,
const string16& text) {
SpellCheckerPlatform::RequestTextCheck(
route_id, identifier, document_tag, text, this);
}
|