Index: chrome/browser/ui/ash/chrome_shell_delegate.cc |
diff --git a/chrome/browser/ui/ash/chrome_shell_delegate.cc b/chrome/browser/ui/ash/chrome_shell_delegate.cc |
index d2e3d254764f776164ce0929fa2ff38d8665a163..a28c94cbd322e43f926cec0e341e7a058dfde81d 100644 |
--- a/chrome/browser/ui/ash/chrome_shell_delegate.cc |
+++ b/chrome/browser/ui/ash/chrome_shell_delegate.cc |
@@ -42,9 +42,11 @@ |
#include "content/public/browser/notification_service.h" |
#include "content/public/browser/user_metrics.h" |
#include "content/public/browser/web_contents.h" |
+#include "grit/chromium_strings.h" |
#include "grit/generated_resources.h" |
#include "ui/aura/client/user_action_client.h" |
#include "ui/aura/window.h" |
+#include "ui/base/l10n/l10n_util.h" |
#if defined(OS_CHROMEOS) |
#include "ash/keyboard_overlay/keyboard_overlay_view.h" |
@@ -596,6 +598,10 @@ ash::RootWindowHostFactory* ChromeShellDelegate::CreateRootWindowHostFactory() { |
return ash::RootWindowHostFactory::Create(); |
} |
+string16 ChromeShellDelegate::GetProductName() const { |
+ return l10n_util::GetStringUTF16(IDS_PRODUCT_NAME); |
+} |
+ |
void ChromeShellDelegate::Observe(int type, |
const content::NotificationSource& source, |
const content::NotificationDetails& details) { |