Index: chrome/browser/notifications/desktop_notification_service.cc |
diff --git a/chrome/browser/notifications/desktop_notification_service.cc b/chrome/browser/notifications/desktop_notification_service.cc |
index cf22a9a89ff518e22189671008c5d72ebf7191db..045e315a59c2b0764448c94a4556af8cbf582a3f 100644 |
--- a/chrome/browser/notifications/desktop_notification_service.cc |
+++ b/chrome/browser/notifications/desktop_notification_service.cc |
@@ -41,6 +41,7 @@ |
#include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" |
#include "ui/base/l10n/l10n_util.h" |
#include "ui/base/resource/resource_bundle.h" |
+#include "ui/base/resource/resource_handle.h" |
using content::BrowserThread; |
using content::RenderViewHost; |
@@ -204,7 +205,7 @@ string16 DesktopNotificationService::CreateDataUrl( |
int resource, const std::vector<std::string>& subst) { |
const base::StringPiece template_html( |
ResourceBundle::GetSharedInstance().GetRawDataResource( |
- resource)); |
+ resource, ui::ResourceHandle::kScaleFactorNone)); |
if (template_html.empty()) { |
NOTREACHED() << "unable to load template. ID: " << resource; |