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

Side by Side Diff: ui/native_theme/native_theme.cc

Issue 1825273002: Add more out of line copy ctors for complex classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 "ui/native_theme/native_theme.h" 5 #include "ui/native_theme/native_theme.h"
6 6
7 #include <cstring> 7 #include <cstring>
8 8
9 #include "ui/native_theme/native_theme_observer.h" 9 #include "ui/native_theme/native_theme_observer.h"
10 10
11 namespace ui { 11 namespace ui {
12 12
13 NativeTheme::ExtraParams::ExtraParams() { 13 NativeTheme::ExtraParams::ExtraParams() {
14 memset(this, 0, sizeof(*this)); 14 memset(this, 0, sizeof(*this));
15 } 15 }
16 16
17 NativeTheme::ExtraParams::ExtraParams(const ExtraParams& other) = default;
18
17 void NativeTheme::SetScrollbarColors(unsigned inactive_color, 19 void NativeTheme::SetScrollbarColors(unsigned inactive_color,
18 unsigned active_color, 20 unsigned active_color,
19 unsigned track_color) { 21 unsigned track_color) {
20 thumb_inactive_color_ = inactive_color; 22 thumb_inactive_color_ = inactive_color;
21 thumb_active_color_ = active_color; 23 thumb_active_color_ = active_color;
22 track_color_ = track_color; 24 track_color_ = track_color;
23 } 25 }
24 26
25 void NativeTheme::AddObserver(NativeThemeObserver* observer) { 27 void NativeTheme::AddObserver(NativeThemeObserver* observer) {
26 native_theme_observers_.AddObserver(observer); 28 native_theme_observers_.AddObserver(observer);
(...skipping 10 matching lines...) Expand all
37 39
38 NativeTheme::NativeTheme() 40 NativeTheme::NativeTheme()
39 : thumb_inactive_color_(0xeaeaea), 41 : thumb_inactive_color_(0xeaeaea),
40 thumb_active_color_(0xf4f4f4), 42 thumb_active_color_(0xf4f4f4),
41 track_color_(0xd3d3d3) { 43 track_color_(0xd3d3d3) {
42 } 44 }
43 45
44 NativeTheme::~NativeTheme() {} 46 NativeTheme::~NativeTheme() {}
45 47
46 } // namespace ui 48 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698