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

Unified Diff: Source/web/WebViewImpl.cpp

Issue 110183002: Remove #if ENABLE(NAVIGATOR_CONTENT_UTILS) from blink (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased #2 Created 6 years, 11 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/WebViewImpl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebViewImpl.cpp
diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
index 2abcf79379e8c1b88e66d11585ab13f6746b33c0..3a6346193203ccb16a7b2ef9e0559aa162146758 100644
--- a/Source/web/WebViewImpl.cpp
+++ b/Source/web/WebViewImpl.cpp
@@ -371,9 +371,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client)
, m_geolocationClientProxy(adoptPtr(new GeolocationClientProxy(client ? client->geolocationClient() : 0)))
, m_userMediaClientImpl(this)
, m_midiClientProxy(adoptPtr(new MIDIClientProxy(client ? client->webMIDIClient() : 0)))
-#if ENABLE(NAVIGATOR_CONTENT_UTILS)
, m_navigatorContentUtilsClient(NavigatorContentUtilsClientImpl::create(this))
-#endif
, m_flingModifier(0)
, m_flingSourceDevice(false)
, m_fullscreenController(FullscreenController::create(this))
@@ -404,9 +402,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client)
#endif
provideSpeechRecognitionTo(m_page.get(), m_speechRecognitionClient.get());
provideNotification(m_page.get(), notificationPresenterImpl());
-#if ENABLE(NAVIGATOR_CONTENT_UTILS)
provideNavigatorContentUtilsTo(m_page.get(), m_navigatorContentUtilsClient.get());
-#endif
provideContextFeaturesTo(m_page.get(), m_featureSwitchClient.get());
provideGeolocationTo(m_page.get(), m_geolocationClientProxy.get());
« no previous file with comments | « Source/web/WebViewImpl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698