| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble.h" | 5 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble.h" |
| 6 | 6 |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/app/chrome_command_ids.h" | 8 #include "chrome/app/chrome_command_ids.h" |
| 9 #include "chrome/browser/profiles/profile.h" | 9 #include "chrome/browser/profiles/profile.h" |
| 10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/ui/browser.h" |
| 11 #include "chrome/browser/ui/browser_commands.h" | 11 #include "chrome/browser/ui/browser_commands.h" |
| 12 #include "chrome/browser/ui/fullscreen/fullscreen_controller.h" | 12 #include "chrome/browser/ui/fullscreen/fullscreen_controller.h" |
| 13 #include "chrome/grit/generated_resources.h" |
| 13 #include "extensions/browser/extension_system.h" | 14 #include "extensions/browser/extension_system.h" |
| 14 #include "grit/generated_resources.h" | |
| 15 #include "grit/ui_strings.h" | 15 #include "grit/ui_strings.h" |
| 16 #include "ui/base/l10n/l10n_util.h" | 16 #include "ui/base/l10n/l10n_util.h" |
| 17 #include "ui/gfx/rect.h" | 17 #include "ui/gfx/rect.h" |
| 18 | 18 |
| 19 // NOTE(koz): Linux doesn't use the thick shadowed border, so we add padding | 19 // NOTE(koz): Linux doesn't use the thick shadowed border, so we add padding |
| 20 // here. | 20 // here. |
| 21 #if defined(OS_LINUX) | 21 #if defined(OS_LINUX) |
| 22 const int FullscreenExitBubble::kPaddingPx = 8; | 22 const int FullscreenExitBubble::kPaddingPx = 8; |
| 23 #else | 23 #else |
| 24 const int FullscreenExitBubble::kPaddingPx = 15; | 24 const int FullscreenExitBubble::kPaddingPx = 15; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 } | 141 } |
| 142 | 142 |
| 143 base::string16 FullscreenExitBubble::GetAllowButtonText() const { | 143 base::string16 FullscreenExitBubble::GetAllowButtonText() const { |
| 144 return l10n_util::GetStringUTF16(IDS_FULLSCREEN_ALLOW); | 144 return l10n_util::GetStringUTF16(IDS_FULLSCREEN_ALLOW); |
| 145 } | 145 } |
| 146 | 146 |
| 147 base::string16 FullscreenExitBubble::GetInstructionText() const { | 147 base::string16 FullscreenExitBubble::GetInstructionText() const { |
| 148 return l10n_util::GetStringFUTF16(IDS_FULLSCREEN_PRESS_ESC_TO_EXIT, | 148 return l10n_util::GetStringFUTF16(IDS_FULLSCREEN_PRESS_ESC_TO_EXIT, |
| 149 l10n_util::GetStringUTF16(IDS_APP_ESC_KEY)); | 149 l10n_util::GetStringUTF16(IDS_APP_ESC_KEY)); |
| 150 } | 150 } |
| OLD | NEW |