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

Side by Side Diff: ui/views/style/platform_style_mac.mm

Issue 2659133002: Remove /resources/ from a vector_icon.h include to fix Google Chrome Mac compile (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "ui/views/style/platform_style.h" 5 #include "ui/views/style/platform_style.h"
6 6
7 #include "base/memory/ptr_util.h" 7 #include "base/memory/ptr_util.h"
8 #include "ui/base/resource/resource_bundle.h" 8 #include "ui/base/resource/resource_bundle.h"
9 #include "ui/base/ui_features.h" 9 #include "ui/base/ui_features.h"
10 #include "ui/gfx/color_utils.h" 10 #include "ui/gfx/color_utils.h"
11 #include "ui/gfx/paint_vector_icon.h" 11 #include "ui/gfx/paint_vector_icon.h"
12 #include "ui/resources/grit/ui_resources.h" 12 #include "ui/resources/grit/ui_resources.h"
13 #include "ui/views/controls/button/label_button.h" 13 #include "ui/views/controls/button/label_button.h"
14 #import "ui/views/controls/scrollbar/cocoa_scroll_bar.h" 14 #import "ui/views/controls/scrollbar/cocoa_scroll_bar.h"
15 #include "ui/views/resources/vector_icons/vector_icons.h" 15 #include "ui/views/vector_icons/vector_icons.h"
16 16
17 #import <Cocoa/Cocoa.h> 17 #import <Cocoa/Cocoa.h>
18 18
19 namespace views { 19 namespace views {
20 20
21 const int PlatformStyle::kComboboxNormalArrowPadding = 0; 21 const int PlatformStyle::kComboboxNormalArrowPadding = 0;
22 const int PlatformStyle::kMinLabelButtonWidth = 32; 22 const int PlatformStyle::kMinLabelButtonWidth = 32;
23 const int PlatformStyle::kMinLabelButtonHeight = 30; 23 const int PlatformStyle::kMinLabelButtonHeight = 30;
24 const bool PlatformStyle::kDefaultLabelButtonHasBoldFont = false; 24 const bool PlatformStyle::kDefaultLabelButtonHasBoldFont = false;
25 const bool PlatformStyle::kDialogDefaultButtonCanBeCancel = false; 25 const bool PlatformStyle::kDialogDefaultButtonCanBeCancel = false;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 ButtonColorByState& colors = *color_by_state; 85 ButtonColorByState& colors = *color_by_state;
86 colors[Button::STATE_PRESSED] = SK_ColorWHITE; 86 colors[Button::STATE_PRESSED] = SK_ColorWHITE;
87 } 87 }
88 88
89 // static 89 // static
90 void PlatformStyle::OnTextfieldEditFailed() { 90 void PlatformStyle::OnTextfieldEditFailed() {
91 NSBeep(); 91 NSBeep();
92 } 92 }
93 93
94 } // namespace views 94 } // namespace views
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698