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

  /external/webkit/Source/WebKit/chromium/public/
WebTextCheckingCompletion.h 38 struct WebTextCheckingResult;
44 virtual void didFinishCheckingText(const WebVector<WebTextCheckingResult>&) = 0;
WebTextCheckingResult.h 39 struct WebTextCheckingResult {
45 explicit WebTextCheckingResult(Error e = ErrorSpelling, int p = 0, int l = 0)
  /external/webkit/Source/WebKit/chromium/src/
WebTextCheckingCompletionImpl.cpp 35 #include "WebTextCheckingResult.h"
43 static TextCheckingType toCoreCheckingType(WebTextCheckingResult::Error error)
45 if (error == WebTextCheckingResult::ErrorSpelling)
47 ASSERT(error == WebTextCheckingResult::ErrorGrammar);
51 static Vector<TextCheckingResult> toCoreResults(const WebVector<WebTextCheckingResult>& results)
65 void WebTextCheckingCompletionImpl::didFinishCheckingText(const WebVector<WebTextCheckingResult>& results)
WebTextCheckingCompletionImpl.h 49 virtual void didFinishCheckingText(const WebVector<WebTextCheckingResult>&);
AssertMatchingEnums.cpp 84 #include "WebTextCheckingResult.h"
419 COMPILE_ASSERT_MATCHING_ENUM(WebTextCheckingResult::ErrorSpelling, DocumentMarker::Spelling);
420 COMPILE_ASSERT_MATCHING_ENUM(WebTextCheckingResult::ErrorGrammar, DocumentMarker::Grammar);
  /external/chromium/chrome/common/
spellcheck_messages.h 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCheckingResult.h"
14 IPC_ENUM_TRAITS(WebKit::WebTextCheckingResult::Error)
16 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebTextCheckingResult)
33 std::vector<WebKit::WebTextCheckingResult>)
  /external/chromium/chrome/browser/
spellcheck_message_filter_browsertest.cc 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextCheckingResult.h"
61 std::vector<WebKit::WebTextCheckingResult> sent_results;
69 WebKit::WebTextCheckingResult::ErrorSpelling);
  /external/webkit/Tools/DumpRenderTree/chromium/
WebViewHost.cpp 56 #include "WebTextCheckingResult.h"
423 Vector<WebTextCheckingResult> results;
433 results.append(WebTextCheckingResult(WebTextCheckingResult::ErrorSpelling, offset + misspelledPosition, misspelledLength));
    [all...]

Completed in 164 milliseconds