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

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

Issue 10662041: mac: Remove nav.pdf in favor of IDR_DEFAULT_FAVICON. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: deps Created 8 years, 6 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 | « content/public/common/content_client.h ('k') | ui/resources/default_200_percent/default_favicon.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/content_client.cc
diff --git a/content/public/common/content_client.cc b/content/public/common/content_client.cc
index 8c401964d0c857731401c8e4b99e878b97e99b96..2b43403490a6018c50f8097351b3a58abbac0037 100644
--- a/content/public/common/content_client.cc
+++ b/content/public/common/content_client.cc
@@ -6,6 +6,7 @@
#include "base/logging.h"
#include "base/string_piece.h"
+#include "ui/gfx/image/image.h"
#include "webkit/glue/webkit_glue.h"
#include "webkit/plugins/ppapi/host_globals.h"
@@ -66,6 +67,11 @@ base::StringPiece ContentClient::GetDataResource(
return base::StringPiece();
}
+gfx::Image& ContentClient::GetNativeImageNamed(int resource_id) const {
+ CR_DEFINE_STATIC_LOCAL(gfx::Image, kEmptyImage, ());
+ return kEmptyImage;
+}
+
#if defined(OS_WIN)
bool ContentClient::SandboxPlugin(CommandLine* command_line,
sandbox::TargetPolicy* policy) {
« no previous file with comments | « content/public/common/content_client.h ('k') | ui/resources/default_200_percent/default_favicon.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698