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

Unified Diff: third_party/WebKit/Source/web/TextCheckerClientImpl.h

Issue 2877363002: Move more classes over to use WebLocalFrameBase instead of WebLocalFrameImpl. (Closed)
Patch Set: Created 3 years, 7 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
Index: third_party/WebKit/Source/web/TextCheckerClientImpl.h
diff --git a/third_party/WebKit/Source/web/TextCheckerClientImpl.h b/third_party/WebKit/Source/web/TextCheckerClientImpl.h
index 1b675c5dbeb7a788350233899689b937cd784cdf..df0525deef957dbc5316a6c725b4ceb57e1cd888 100644
--- a/third_party/WebKit/Source/web/TextCheckerClientImpl.h
+++ b/third_party/WebKit/Source/web/TextCheckerClientImpl.h
@@ -10,7 +10,7 @@
namespace blink {
-class WebLocalFrameImpl;
+class WebLocalFrameBase;
class WebTextCheckClient;
// TODO(xiaochengh): Rename TextCheckerClientImpl to SpellCheckerClientImpl.
@@ -18,7 +18,7 @@ class TextCheckerClientImpl final
: public GarbageCollected<TextCheckerClientImpl>,
public TextCheckerClient {
public:
- explicit TextCheckerClientImpl(WebLocalFrameImpl*);
+ explicit TextCheckerClientImpl(WebLocalFrameBase*);
void CheckSpellingOfString(const String&,
int* misspelling_location,
@@ -31,7 +31,7 @@ class TextCheckerClientImpl final
private:
WebTextCheckClient* GetWebTextCheckClient() const;
- Member<WebLocalFrameImpl> web_local_frame_;
+ Member<WebLocalFrameBase> web_local_frame_;
DISALLOW_COPY_AND_ASSIGN(TextCheckerClientImpl);
};
« no previous file with comments | « third_party/WebKit/Source/web/StorageQuotaClientImpl.cpp ('k') | third_party/WebKit/Source/web/TextCheckerClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698