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

Side by Side Diff: chrome/browser/ui/cocoa/l10n_util.mm

Issue 2541583002: [Mac] Don't flip window controls in RTL for macOS < 10.12 (Closed)
Patch Set: Created 4 years 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #import "chrome/browser/ui/cocoa/l10n_util.h" 5 #import "chrome/browser/ui/cocoa/l10n_util.h"
6 6
7 #include "base/i18n/rtl.h" 7 #include "base/i18n/rtl.h"
8 #include "base/mac/mac_util.h"
8 #include "base/strings/string_util.h" 9 #include "base/strings/string_util.h"
9 #include "base/strings/sys_string_conversions.h" 10 #include "base/strings/sys_string_conversions.h"
10 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTw eaker.h" 11 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMUILocalizerAndLayoutTw eaker.h"
11 12
12 namespace cocoa_l10n_util { 13 namespace cocoa_l10n_util {
13 14
14 NSInteger CompareFrameY(id view1, id view2, void* context) { 15 NSInteger CompareFrameY(id view1, id view2, void* context) {
15 CGFloat y1 = NSMinY([view1 frame]); 16 CGFloat y1 = NSMinY([view1 frame]);
16 CGFloat y2 = NSMinY([view2 frame]); 17 CGFloat y2 = NSMinY([view2 frame]);
17 if (y1 < y2) 18 if (y1 < y2)
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 } 85 }
85 86
86 const base::Feature kExperimentalMacRTL{"ExperimentalMacRTL", 87 const base::Feature kExperimentalMacRTL{"ExperimentalMacRTL",
87 base::FEATURE_DISABLED_BY_DEFAULT}; 88 base::FEATURE_DISABLED_BY_DEFAULT};
88 89
89 bool ShouldDoExperimentalRTLLayout() { 90 bool ShouldDoExperimentalRTLLayout() {
90 return base::i18n::IsRTL() && 91 return base::i18n::IsRTL() &&
91 base::FeatureList::IsEnabled(kExperimentalMacRTL); 92 base::FeatureList::IsEnabled(kExperimentalMacRTL);
92 } 93 }
93 94
95 bool ShouldFlipWindowControlsInRTL() {
96 return ShouldDoExperimentalRTLLayout() && base::mac::IsAtLeastOS10_12();
97 }
98
94 } // namespace cocoa_l10n_util 99 } // namespace cocoa_l10n_util
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/l10n_util.h ('k') | chrome/browser/ui/cocoa/profiles/avatar_base_controller.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698