Index: chrome/browser/ui/views/accessibility/invert_bubble_view.cc |
diff --git a/chrome/browser/ui/views/accessibility/invert_bubble_view.cc b/chrome/browser/ui/views/accessibility/invert_bubble_view.cc |
index 52c3db17f5b3c539e8032ecebdac7c92e310cfb2..6bd2082696999cfc767326fb5828c7e8f2ada2ca 100644 |
--- a/chrome/browser/ui/views/accessibility/invert_bubble_view.cc |
+++ b/chrome/browser/ui/views/accessibility/invert_bubble_view.cc |
@@ -24,9 +24,14 @@ |
namespace { |
-const char kHighContrastExtensionUrl[] = "https://chrome.google.com/webstore/detail/djcfdncoelnlbldjfhinnjlhdjlikmph"; |
-const char kDarkThemeSearchUrl[] = "https://chrome.google.com/webstore/search-themes/dark"; |
-const char kLearnMoreUrl[] = "https://groups.google.com/a/googleproductforums.com/d/topic/chrome/Xrco2HsXS-8/discussion"; |
+const char kHighContrastExtensionUrl[] = |
+ "https://chrome.google.com/webstore/detail/" |
msw
2014/02/04 00:58:20
The style guide allows string literals to exceed 8
Yuki
2014/02/04 03:03:07
Done.
|
+ "djcfdncoelnlbldjfhinnjlhdjlikmph"; |
+const char kDarkThemeSearchUrl[] = |
+ "https://chrome.google.com/webstore/search-themes/dark"; |
+const char kLearnMoreUrl[] = |
+ "https://groups.google.com/a/googleproductforums.com/d/topic/chrome/" |
+ "Xrco2HsXS-8/discussion"; |
const int kBubbleWidth = 500; |
class InvertBubbleView : public views::BubbleDelegateView, |
@@ -73,8 +78,7 @@ void InvertBubbleView::Init() { |
views::Label* title = new views::Label( |
l10n_util::GetStringUTF16(IDS_HIGH_CONTRAST_NOTIFICATION), |
- original_font_list.DeriveFontListWithSizeDeltaAndStyle(2, |
- gfx::Font::BOLD)); |
+ original_font_list.Derive(2, gfx::Font::BOLD)); |
title->SetMultiLine(true); |
title->SizeToFit(kBubbleWidth); |