| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 Google Inc. All rights reserved. | 2 * Copyright (c) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 int location; | 53 int location; |
| 54 int length; | 54 int length; |
| 55 Vector<GrammarDetail> details; | 55 Vector<GrammarDetail> details; |
| 56 Vector<String> replacements; | 56 Vector<String> replacements; |
| 57 }; | 57 }; |
| 58 | 58 |
| 59 const int kUnrequestedTextCheckingSequence = -1; | 59 const int kUnrequestedTextCheckingSequence = -1; |
| 60 | 60 |
| 61 class TextCheckingRequestData final { | 61 class TextCheckingRequestData final { |
| 62 DISALLOW_NEW(); | 62 DISALLOW_NEW(); |
| 63 |
| 63 public: | 64 public: |
| 64 TextCheckingRequestData(const String& text) | 65 TextCheckingRequestData(const String& text) |
| 65 : sequence_(kUnrequestedTextCheckingSequence), text_(text) {} | 66 : sequence_(kUnrequestedTextCheckingSequence), text_(text) {} |
| 66 | 67 |
| 67 void SetSequence(int sequence) { sequence_ = sequence; } | 68 void SetSequence(int sequence) { sequence_ = sequence; } |
| 68 int Sequence() const { return sequence_; } | 69 int Sequence() const { return sequence_; } |
| 69 String GetText() const { return text_; } | 70 String GetText() const { return text_; } |
| 70 | 71 |
| 71 private: | 72 private: |
| 72 int sequence_; | 73 int sequence_; |
| 73 String text_; | 74 String text_; |
| 74 }; | 75 }; |
| 75 | 76 |
| 76 class PLATFORM_EXPORT TextCheckingRequest | 77 class PLATFORM_EXPORT TextCheckingRequest |
| 77 : public GarbageCollectedFinalized<TextCheckingRequest> { | 78 : public GarbageCollectedFinalized<TextCheckingRequest> { |
| 78 public: | 79 public: |
| 79 virtual ~TextCheckingRequest() {} | 80 virtual ~TextCheckingRequest() {} |
| 80 DEFINE_INLINE_VIRTUAL_TRACE() {} | 81 DEFINE_INLINE_VIRTUAL_TRACE() {} |
| 81 | 82 |
| 82 virtual const TextCheckingRequestData& Data() const = 0; | 83 virtual const TextCheckingRequestData& Data() const = 0; |
| 83 virtual void DidSucceed(const Vector<TextCheckingResult>&) = 0; | 84 virtual void DidSucceed(const Vector<TextCheckingResult>&) = 0; |
| 84 virtual void DidCancel() = 0; | 85 virtual void DidCancel() = 0; |
| 85 }; | 86 }; |
| 86 | 87 |
| 87 } // namespace blink | 88 } // namespace blink |
| 88 | 89 |
| 89 #endif // TextChecking_h | 90 #endif // TextChecking_h |
| OLD | NEW |