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

Unified Diff: content/public/common/content_client.cc

Issue 747923004: webui: minimize webui flicker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years, 1 month 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: content/public/common/content_client.cc
diff --git a/content/public/common/content_client.cc b/content/public/common/content_client.cc
index 425c40ff29dc6f479919b35f8d3f64499133ffde..3f63917a27e5a60e6b87eec923db06353fa0e03e 100644
--- a/content/public/common/content_client.cc
+++ b/content/public/common/content_client.cc
@@ -93,6 +93,10 @@ base::RefCountedStaticMemory* ContentClient::GetDataResourceBytes(
return NULL;
}
+WebUITextStyles ContentClient::GetWebUITextStyles() const {
+ return WebUITextStyles();
+}
+
gfx::Image& ContentClient::GetNativeImageNamed(int resource_id) const {
CR_DEFINE_STATIC_LOCAL(gfx::Image, kEmptyImage, ());
return kEmptyImage;

Powered by Google App Engine
This is Rietveld 408576698