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

Side by Side Diff: chrome/browser/ui/exclusive_access/exclusive_access_bubble.cc

Issue 823133004: Cleanup: Update the path to gfx rect headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rect_f.h Created 5 years, 11 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 unified diff | Download patch
OLDNEW
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/exclusive_access/exclusive_access_bubble.h" 5 #include "chrome/browser/ui/exclusive_access/exclusive_access_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/exclusive_access/fullscreen_controller.h" 12 #include "chrome/browser/ui/exclusive_access/fullscreen_controller.h"
13 #include "chrome/grit/generated_resources.h" 13 #include "chrome/grit/generated_resources.h"
14 #include "extensions/browser/extension_registry.h" 14 #include "extensions/browser/extension_registry.h"
15 #include "ui/base/l10n/l10n_util.h" 15 #include "ui/base/l10n/l10n_util.h"
16 #include "ui/gfx/rect.h" 16 #include "ui/gfx/geometry/rect.h"
17 #include "ui/strings/grit/ui_strings.h" 17 #include "ui/strings/grit/ui_strings.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 ExclusiveAccessBubble::kPaddingPx = 8; 22 const int ExclusiveAccessBubble::kPaddingPx = 8;
23 #else 23 #else
24 const int ExclusiveAccessBubble::kPaddingPx = 15; 24 const int ExclusiveAccessBubble::kPaddingPx = 15;
25 #endif 25 #endif
26 const int ExclusiveAccessBubble::kInitialDelayMs = 3800; 26 const int ExclusiveAccessBubble::kInitialDelayMs = 3800;
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 } 138 }
139 139
140 base::string16 ExclusiveAccessBubble::GetAllowButtonText() const { 140 base::string16 ExclusiveAccessBubble::GetAllowButtonText() const {
141 return l10n_util::GetStringUTF16(IDS_FULLSCREEN_ALLOW); 141 return l10n_util::GetStringUTF16(IDS_FULLSCREEN_ALLOW);
142 } 142 }
143 143
144 base::string16 ExclusiveAccessBubble::GetInstructionText() const { 144 base::string16 ExclusiveAccessBubble::GetInstructionText() const {
145 return l10n_util::GetStringFUTF16(IDS_FULLSCREEN_PRESS_ESC_TO_EXIT, 145 return l10n_util::GetStringFUTF16(IDS_FULLSCREEN_PRESS_ESC_TO_EXIT,
146 l10n_util::GetStringUTF16(IDS_APP_ESC_KEY)); 146 l10n_util::GetStringUTF16(IDS_APP_ESC_KEY));
147 } 147 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/toolbar/wrench_toolbar_button_cell.mm ('k') | chrome/browser/ui/extensions/app_launch_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698