OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "base/logging.h" | 5 #include "base/logging.h" |
6 #include "base/strings/string_number_conversions.h" | 6 #include "base/strings/string_number_conversions.h" |
7 #include "ui/message_center/notifier_settings.h" | 7 #include "ui/message_center/notifier_settings.h" |
8 | 8 |
9 namespace message_center { | 9 namespace message_center { |
10 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 const base::string16& name, | 56 const base::string16& name, |
57 bool enabled) | 57 bool enabled) |
58 : notifier_id(notifier_id), | 58 : notifier_id(notifier_id), |
59 name(name), | 59 name(name), |
60 enabled(enabled) { | 60 enabled(enabled) { |
61 } | 61 } |
62 | 62 |
63 Notifier::~Notifier() { | 63 Notifier::~Notifier() { |
64 } | 64 } |
65 | 65 |
66 NotifierGroup::NotifierGroup(const gfx::Image& icon, | 66 NotifierGroup::NotifierGroup(const base::string16& name, |
67 const base::string16& name, | |
68 const base::string16& login_info) | 67 const base::string16& login_info) |
69 : icon(icon), name(name), login_info(login_info) {} | 68 : name(name), login_info(login_info) {} |
70 | 69 |
71 NotifierGroup::~NotifierGroup() {} | 70 NotifierGroup::~NotifierGroup() {} |
72 | 71 |
73 } // namespace message_center | 72 } // namespace message_center |
OLD | NEW |