HomeSort by relevance Sort by last modified time
    Searched refs:SpellCheck (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck.cc 5 #include "chrome/renderer/spellchecker/spellcheck.h"
37 bool enabled_; // New spellcheck-enabled state.
97 class SpellCheck::SpellcheckRequest {
119 // Initializes SpellCheck object.
124 // which in turn triggers the delayed initialization sequence in SpellCheck.
133 SpellCheck::SpellCheck()
138 SpellCheck::~SpellCheck() {
141 bool SpellCheck::OnControlMessageReceived(const IPC::Message& message)
    [all...]
spellcheck.h 33 class SpellCheck : public content::RenderProcessObserver,
34 public base::SupportsWeakPtr<SpellCheck> {
43 SpellCheck();
44 virtual ~SpellCheck();
59 // SpellCheck a word.
76 // SpellCheck a paragraph.
91 // Requests to spellcheck the specified text in the background. This function
133 // Posts delayed spellcheck task and clear it if any.
159 DISALLOW_COPY_AND_ASSIGN(SpellCheck);
spellcheck_provider.h 16 class SpellCheck;
26 // 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; }
71 virtual void spellCheck(
117 // The last text sent to the browser process to spellcheck it and it
    [all...]
spellcheck_provider_test.cc 10 #include "chrome/renderer/spellchecker/spellcheck.h"
13 class MockSpellcheck: public SpellCheck {
spellcheck_provider.cc 13 #include "chrome/renderer/spellchecker/spellcheck.h"
39 SpellCheck* spellcheck)
43 spellcheck_(spellcheck) {
128 void SpellCheckProvider::spellCheck(
140 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check.suggestions", word.size());
142 UMA_HISTOGRAM_COUNTS("SpellCheck.api.check", word.size());
163 UMA_HISTOGRAM_COUNTS("SpellCheck.api.paragraph", text.length());
177 UMA_HISTOGRAM_COUNTS("SpellCheck.api.async", text.length());
183 UMA_HISTOGRAM_COUNTS("SpellCheck.api.autocorrect", word.length())
    [all...]
spellcheck_unittest.cc 14 #include "chrome/renderer/spellchecker/spellcheck.h"
41 spell_check_.reset(new SpellCheck());
46 spell_check_.reset(new SpellCheck());
61 // TODO(groby): Forcing spellcheck to use hunspell, even on OSX.
76 SpellCheck* spell_check() { return spell_check_.get(); }
103 scoped_ptr<SpellCheck> spell_check_;
129 // Operates unit tests for the content::SpellCheck::SpellCheckWord() function
351 // spellcheck" <http://crbug.com/13432>.
    [all...]
  /external/chromium_org/chrome/test/base/
chrome_render_view_test.cc 12 #include "chrome/renderer/spellchecker/spellcheck.h"
110 client->SetSpellcheck(new SpellCheck());
  /external/chromium_org/chrome/renderer/
chrome_content_renderer_client.h 27 class SpellCheck;
158 // Sets a new |spellcheck|. Used for testing only.
159 // Takes ownership of |spellcheck|.
160 void SetSpellcheck(SpellCheck* spellcheck);
224 scoped_ptr<SpellCheck> spellcheck_;
chrome_content_renderer_client.cc 132 #include "chrome/renderer/spellchecker/spellcheck.h"
215 explicit SpellCheckReplacer(SpellCheck* spellcheck)
216 : spellcheck_(spellcheck) {}
220 SpellCheck* spellcheck_; // New shared spellcheck for all views. Weak Ptr.
313 // ChromeRenderViewTest::SetUp() creates a Spellcheck and injects it using
316 spellcheck_.reset(new SpellCheck());
    [all...]

Completed in 587 milliseconds