Searched refs:spellcheck (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/chrome/browser/spellchecker/
H A Dspellcheck_message_filter.cc33 // IPC messages arrive on IO thread, but spellcheck data lives on UI thread.
35 // access spellcheck data.
89 SpellcheckService* spellcheck = GetSpellcheckService(); local
92 if (!spellcheck)
94 if (spellcheck->GetMetrics())
95 spellcheck->GetMetrics()->RecordCheckedWordStats(word, misspelled);
100 SpellcheckService* spellcheck = GetSpellcheckService(); local
103 if (!spellcheck)
105 spellcheck->GetFeedbackSender()->OnReceiveDocumentMarkers(
134 SpellcheckService* spellcheck local
[all...]
H A Dspellcheck_factory.cc55 SpellcheckService* spellcheck = new SpellcheckService(context); local
61 spellcheck->StartRecordingMetrics(
64 return spellcheck;
H A Dspellcheck_service.h33 // Encapsulates the browser side spellcheck service. There is one of these per
35 // SpellcheckService maintains any per-profile information about spellcheck.
98 spellcheck::FeedbackSender* GetFeedbackSender();
166 scoped_ptr<spellcheck::FeedbackSender> feedback_sender_;
H A Dfeedback.h5 // An object to store user feedback to spellcheck suggestions from spelling
21 namespace spellcheck { namespace
23 // Stores user feedback to spellcheck suggestions. Sample usage:
110 } // namespace spellcheck
H A Dfeedback_sender.h35 namespace spellcheck { namespace
80 // will never see the spellcheck suggestions for the misspelling.
92 // Generates feedback data based on spellcheck results. The new feedback data
175 } // namespace spellcheck
H A Dfeedback_unittest.cc14 namespace spellcheck { namespace
39 spellcheck::Feedback feedback_;
259 } // namespace spellcheck
H A Dspellcheck_service.cc50 feedback_sender_.reset(new spellcheck::FeedbackSender(
195 spellcheck::FeedbackSender* SpellcheckService::GetFeedbackSender() {
H A Dfeedback.cc24 namespace spellcheck { namespace
185 } // namespace spellcheck
H A Dfeedback_sender_unittest.cc27 namespace spellcheck { namespace
39 // Builds a simple spellcheck result.
141 scoped_ptr<spellcheck::FeedbackSender> feedback_;
305 // 2) No feedback is sent until a spellcheck request happens.
343 // The first spellcheck request after session expiration creates different
403 // Flush all feedback when the spellcheck language and country change.
501 // Duplicate spellcheck results should be matched to the existing markers.
624 } // namespace spellcheck
H A Dfeedback_sender.cc5 // The |FeedbackSender| object stores the user feedback to spellcheck
8 // When spelling service returns spellcheck results, these results first arrive
14 // because we request spellcheck for whole paragraphs, as context around a
15 // misspelled word is important to the spellcheck algorithm.
54 namespace spellcheck { namespace
74 // Returns a pending feedback data structure for the spellcheck |result| and
288 // If the renderer already has a marker for this spellcheck result, then
289 // set the hash of the spellcheck result to be the same as the marker.
292 // If the renderer does not yet have a marker for this spellcheck result,
293 // then generate a new hash for the spellcheck resul
[all...]
/external/chromium_org/chrome/browser/extensions/api/spellcheck/
H A Dspellcheck_api.cc5 #include "chrome/browser/extensions/api/spellcheck/spellcheck_api.h"
10 #include "chrome/common/extensions/api/spellcheck/spellcheck_handler.h"
64 SpellcheckService* spellcheck = local
66 spellcheck->LoadExternalDictionary(
81 SpellcheckService* spellcheck = local
83 spellcheck->UnloadExternalDictionary(spellcheck_info->path);
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Dspelling_menu_observer.cc255 SpellcheckService* spellcheck = local
257 if (spellcheck) {
258 if (spellcheck->GetMetrics())
259 spellcheck->GetMetrics()->RecordReplacedWordStats(1);
260 spellcheck->GetFeedbackSender()->SelectedSuggestion(
281 SpellcheckService* spellcheck = local
283 if (spellcheck) {
284 spellcheck->GetCustomDictionary()->AddWord(base::UTF16ToUTF8(
286 spellcheck->GetFeedbackSender()->AddedToDictionary(misspelling_hash_);
349 SpellcheckService* spellcheck
[all...]
/external/chromium_org/chrome/renderer/spellchecker/
H A Dspellcheck_provider.h26 // This class deals with invoking browser-side spellcheck mechanism
36 SpellCheck* spellcheck);
51 // Replace shared spellcheck data.
52 void set_spellcheck(SpellCheck* spellcheck) { spellcheck_ = spellcheck; } argument
117 // The last text sent to the browser process to spellcheck it and its
125 // Weak pointer to shared (per RenderView) spellcheck data.
H A Dspellcheck_provider.cc13 #include "chrome/renderer/spellchecker/spellcheck.h"
39 SpellCheck* spellcheck)
43 spellcheck_(spellcheck) {
220 // If |succeeded| is false, we use local spellcheck as a fallback.
316 // the spellcheck request here, because WebKit might have discarded the
317 // previous spellcheck results and erased the spelling markers in response to
37 SpellCheckProvider( content::RenderView* render_view, SpellCheck* spellcheck) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLElement.idl43 attribute boolean spellcheck;
H A DHTMLElement.h63 bool spellcheck() const;
H A DHTMLElement.cpp538 bool HTMLElement::spellcheck() const function in class:blink::HTMLElement
/external/chromium_org/chrome/renderer/
H A Dchrome_content_renderer_client.h158 // Sets a new |spellcheck|. Used for testing only.
159 // Takes ownership of |spellcheck|.
160 void SetSpellcheck(SpellCheck* spellcheck);
H A Dchrome_content_renderer_client.cc132 #include "chrome/renderer/spellchecker/spellcheck.h"
215 explicit SpellCheckReplacer(SpellCheck* spellcheck) argument
216 : spellcheck_(spellcheck) {}
220 SpellCheck* spellcheck_; // New shared spellcheck for all views. Weak Ptr.
1406 void ChromeContentRendererClient::SetSpellcheck(SpellCheck* spellcheck) { argument
1410 spellcheck_.reset(spellcheck);
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebFrameTest.cpp4494 SpellCheckClient spellcheck; local
4495 webViewHelper.webView()->setSpellCheckClient(&spellcheck);
4513 EXPECT_EQ(1, spellcheck.numberOfTimesChecked());
4525 SpellCheckClient spellcheck; local
4526 webViewHelper.webView()->setSpellCheckClient(&spellcheck);
4554 SpellCheckClient spellcheck; local
4555 webViewHelper.webView()->setSpellCheckClient(&spellcheck);
4587 SpellCheckClient spellcheck(kHash);
4588 webViewHelper.webView()->setSpellCheckClient(&spellcheck);
4662 StubbornSpellCheckClient spellcheck; local
4714 StubbornSpellCheckClient spellcheck; local
4743 StubbornSpellCheckClient spellcheck; local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
H A DConsoleView.js104 this._promptElement.spellcheck = false;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp2381 DEFINE_STATIC_LOCAL(AtomicString, spellcheckString, ("spellcheck", AtomicString::ConstructFromLiteral));
2396 const AtomicString& spellcheck = element->getAttribute(spellcheckString); local
2397 if (spellcheck == "on")
2399 else if (spellcheck == "off")

Completed in 355 milliseconds