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

Unified Diff: chrome/renderer/spellchecker/spellcheck.h

Issue 63273002: Rename WebKit namespace to blink (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « chrome/renderer/searchbox/searchbox_extension.cc ('k') | chrome/renderer/spellchecker/spellcheck.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/spellchecker/spellcheck.h
diff --git a/chrome/renderer/spellchecker/spellcheck.h b/chrome/renderer/spellchecker/spellcheck.h
index 076a3bc200bb9be5a17880408b6bef362077ff8c..0ba206ac6b0934a64a95e87eaa9644a5166e061f 100644
--- a/chrome/renderer/spellchecker/spellcheck.h
+++ b/chrome/renderer/spellchecker/spellcheck.h
@@ -21,7 +21,7 @@
struct SpellCheckResult;
-namespace WebKit {
+namespace blink {
class WebTextCheckingCompletion;
struct WebTextCheckingResult;
}
@@ -78,7 +78,7 @@ class SpellCheck : public content::RenderProcessObserver,
// If the spellchecker failed to initialize, always returns true.
bool SpellCheckParagraph(
const string16& text,
- WebKit::WebVector<WebKit::WebTextCheckingResult>* results);
+ blink::WebVector<blink::WebTextCheckingResult>* results);
// Find a possible correctly spelled word for a misspelled word. Computes an
// empty string if input misspelled word is too long, there is ambiguity, or
@@ -92,7 +92,7 @@ class SpellCheck : public content::RenderProcessObserver,
// posts a background task and calls SpellCheckParagraph() in the task.
#if !defined (OS_MACOSX)
void RequestTextChecking(const string16& text,
- WebKit::WebTextCheckingCompletion* completion);
+ blink::WebTextCheckingCompletion* completion);
#endif
// Creates a list of WebTextCheckingResult objects (used by WebKit) from a
@@ -104,7 +104,7 @@ class SpellCheck : public content::RenderProcessObserver,
int line_offset,
const string16& line_text,
const std::vector<SpellCheckResult>& spellcheck_results,
- WebKit::WebVector<WebKit::WebTextCheckingResult>* textcheck_results);
+ blink::WebVector<blink::WebTextCheckingResult>* textcheck_results);
bool is_spellcheck_enabled() { return spellcheck_enabled_; }
« no previous file with comments | « chrome/renderer/searchbox/searchbox_extension.cc ('k') | chrome/renderer/spellchecker/spellcheck.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698