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

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

Issue 2848513002: Introduce the abstract class WebViewBase, to decouple WebViewImpl. (Closed)
Patch Set: Fix typo. 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/EditorClientImpl.h
diff --git a/third_party/WebKit/Source/web/EditorClientImpl.h b/third_party/WebKit/Source/web/EditorClientImpl.h
index d06df631b587c80de65480ad6c23113499f40360..d9b182f205b4a16d0415c28983ead38ad7bfa7b8 100644
--- a/third_party/WebKit/Source/web/EditorClientImpl.h
+++ b/third_party/WebKit/Source/web/EditorClientImpl.h
@@ -37,11 +37,11 @@
namespace blink {
class LocalFrame;
-class WebViewImpl;
+class WebViewBase;
class EditorClientImpl final : public EditorClient {
public:
- explicit EditorClientImpl(WebViewImpl*);
+ explicit EditorClientImpl(WebViewBase*);
~EditorClientImpl() override;
void RespondToChangedContents() override;
@@ -51,7 +51,7 @@ class EditorClientImpl final : public EditorClient {
bool HandleKeyboardEvent(LocalFrame*) override;
private:
- WebViewImpl* web_view_;
+ WebViewBase* web_view_;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/web/DevToolsEmulator.cpp ('k') | third_party/WebKit/Source/web/EditorClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698