Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: third_party/WebKit/Source/core/page/SpellCheckerClient.h

Issue 2795113002: Move ownership of TextCheckerClientImpl to WebLocalFrameImpl (Closed)
Patch Set: Rebased Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 13 matching lines...) Expand all
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */ 25 */
26 26
27 #ifndef SpellCheckerClient_h 27 #ifndef SpellCheckerClient_h
28 #define SpellCheckerClient_h 28 #define SpellCheckerClient_h
29 29
30 #include "wtf/Forward.h" 30 #include "wtf/Forward.h"
31 31
32 namespace blink { 32 namespace blink {
33 33
34 class TextCheckerClient;
35
36 // TODO(xiaochengh): Split SpellCheckerClient into two classes: 34 // TODO(xiaochengh): Split SpellCheckerClient into two classes:
37 // - SpllingUIClient, for spelling UI related functions. 35 // - SpllingUIClient, for spelling UI related functions.
38 // - SpellCheckToggler, for checking and toggling the enabled state. 36 // - SpellCheckToggler, for checking and toggling the enabled state.
39 class SpellCheckerClient { 37 class SpellCheckerClient {
40 public: 38 public:
41 virtual ~SpellCheckerClient() {} 39 virtual ~SpellCheckerClient() {}
42 40
43 virtual bool isSpellCheckingEnabled() = 0; 41 virtual bool isSpellCheckingEnabled() = 0;
44 virtual void toggleSpellCheckingEnabled() = 0; 42 virtual void toggleSpellCheckingEnabled() = 0;
45
46 virtual TextCheckerClient& textChecker() = 0;
47
48 virtual void updateSpellingUIWithMisspelledWord(const WTF::String&) = 0; 43 virtual void updateSpellingUIWithMisspelledWord(const WTF::String&) = 0;
49 virtual void showSpellingUI(bool show) = 0; 44 virtual void showSpellingUI(bool show) = 0;
50 virtual bool spellingUIIsShowing() = 0; 45 virtual bool spellingUIIsShowing() = 0;
51 }; 46 };
52 47
53 } // namespace blink 48 } // namespace blink
54 49
55 #endif // SpellCheckerClient_h 50 #endif // SpellCheckerClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/EmptyClients.cpp ('k') | third_party/WebKit/Source/platform/text/TextCheckerClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698