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

Unified Diff: third_party/WebKit/Source/web/ValidationMessageClientImpl.cpp

Issue 2854783003: Remove the last references from production code to WebViewImpl. (Closed)
Patch Set: 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/ValidationMessageClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/ValidationMessageClientImpl.cpp b/third_party/WebKit/Source/web/ValidationMessageClientImpl.cpp
index 784a1a268f95bb54b75f416598738cbb8f738d46..882665e0c43537f07136788ccf66274647ccb951 100644
--- a/third_party/WebKit/Source/web/ValidationMessageClientImpl.cpp
+++ b/third_party/WebKit/Source/web/ValidationMessageClientImpl.cpp
@@ -27,25 +27,26 @@
#include "core/dom/Element.h"
#include "core/dom/TaskRunnerHelper.h"
+#include "core/exported/WebViewBase.h"
#include "core/frame/FrameView.h"
+#include "core/page/ChromeClient.h"
#include "platform/PlatformChromeClient.h"
#include "platform/wtf/CurrentTime.h"
#include "public/platform/WebRect.h"
#include "public/platform/WebString.h"
#include "public/web/WebTextDirection.h"
#include "public/web/WebViewClient.h"
-#include "web/WebViewImpl.h"
namespace blink {
-ValidationMessageClientImpl::ValidationMessageClientImpl(WebViewImpl& web_view)
+ValidationMessageClientImpl::ValidationMessageClientImpl(WebViewBase& web_view)
: web_view_(web_view),
current_anchor_(nullptr),
last_page_scale_factor_(1),
finish_time_(0) {}
ValidationMessageClientImpl* ValidationMessageClientImpl::Create(
- WebViewImpl& web_view) {
+ WebViewBase& web_view) {
return new ValidationMessageClientImpl(web_view);
}

Powered by Google App Engine
This is Rietveld 408576698