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

Unified Diff: webkit/glue/webkitplatformsupport_impl.cc

Issue 14424007: Use the default theme as the fallback UI in Blink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed static initializer Created 7 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
« no previous file with comments | « webkit/glue/webkitplatformsupport_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webkitplatformsupport_impl.cc
diff --git a/webkit/glue/webkitplatformsupport_impl.cc b/webkit/glue/webkitplatformsupport_impl.cc
index 00900a70a28949e24185914d9b9520573a6e3222..af0ec806954aebc39d5f1963e015722ffa8ad185 100644
--- a/webkit/glue/webkitplatformsupport_impl.cc
+++ b/webkit/glue/webkitplatformsupport_impl.cc
@@ -62,6 +62,7 @@
using WebKit::WebAudioBus;
using WebKit::WebCookie;
using WebKit::WebData;
+using WebKit::WebFallbackThemeEngine;
using WebKit::WebLocalizedString;
using WebKit::WebPluginListBuilder;
using WebKit::WebString;
@@ -383,7 +384,11 @@ void WebKitPlatformSupportImpl::SetFlingCurveParameters(
}
WebThemeEngine* WebKitPlatformSupportImpl::themeEngine() {
- return &theme_engine_;
+ return &native_theme_engine_;
+}
+
+WebFallbackThemeEngine* WebKitPlatformSupportImpl::fallbackThemeEngine() {
+ return &fallback_theme_engine_;
}
WebURLLoader* WebKitPlatformSupportImpl::createURLLoader() {
« no previous file with comments | « webkit/glue/webkitplatformsupport_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698