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

Unified Diff: Source/web/SpellCheckerClientImpl.h

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/SpeechRecognitionClientProxy.cpp ('k') | Source/web/SpellCheckerClientImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/SpellCheckerClientImpl.h
diff --git a/Source/web/SpellCheckerClientImpl.h b/Source/web/SpellCheckerClientImpl.h
index 2fca3f773d0b3f5e3f9d0a171bda2cd1bd90e0fb..c3c99a4b43822844fb559048285b30c9ae84954c 100644
--- a/Source/web/SpellCheckerClientImpl.h
+++ b/Source/web/SpellCheckerClientImpl.h
@@ -34,7 +34,7 @@
#include "core/page/SpellCheckerClient.h"
#include "platform/text/TextCheckerClient.h"
-namespace WebCore {
+namespace blink {
class LocalFrame;
class HTMLInputElement;
}
@@ -42,7 +42,7 @@ class HTMLInputElement;
namespace blink {
class WebViewImpl;
-class SpellCheckerClientImpl FINAL : public WebCore::SpellCheckerClient, public WebCore::TextCheckerClient {
+class SpellCheckerClientImpl FINAL : public blink::SpellCheckerClient, public blink::TextCheckerClient {
public:
SpellCheckerClientImpl(WebViewImpl*);
@@ -51,17 +51,17 @@ public:
virtual bool isContinuousSpellCheckingEnabled() OVERRIDE;
virtual void toggleContinuousSpellChecking() OVERRIDE;
virtual bool isGrammarCheckingEnabled() OVERRIDE;
- virtual bool shouldEraseMarkersAfterChangeSelection(WebCore::TextCheckingType) const OVERRIDE;
+ virtual bool shouldEraseMarkersAfterChangeSelection(blink::TextCheckingType) const OVERRIDE;
virtual void checkSpellingOfString(const String&, int* misspellingLocation, int* misspellingLength) OVERRIDE;
- virtual void checkGrammarOfString(const String&, WTF::Vector<WebCore::GrammarDetail>&,
+ virtual void checkGrammarOfString(const String&, WTF::Vector<blink::GrammarDetail>&,
int* badGrammarLocation, int* badGrammarLength) OVERRIDE;
virtual WTF::String getAutoCorrectSuggestionForMisspelledWord(const WTF::String&) OVERRIDE;
virtual void updateSpellingUIWithMisspelledWord(const WTF::String&) OVERRIDE;
virtual void showSpellingUI(bool show) OVERRIDE;
virtual bool spellingUIIsShowing() OVERRIDE;
- virtual void requestCheckingOfString(WTF::PassRefPtr<WebCore::TextCheckingRequest>) OVERRIDE;
+ virtual void requestCheckingOfString(WTF::PassRefPtr<blink::TextCheckingRequest>) OVERRIDE;
- virtual WebCore::TextCheckerClient& textChecker() OVERRIDE { return *this; }
+ virtual blink::TextCheckerClient& textChecker() OVERRIDE { return *this; }
private:
// Returns whether or not the focused control needs spell-checking.
« no previous file with comments | « Source/web/SpeechRecognitionClientProxy.cpp ('k') | Source/web/SpellCheckerClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698