Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/notifications/notifier_source.h" | |
| 6 | |
| 7 NotifierSource::NotifierSource(message_center::NotifierSettingsObserver* parent) | |
|
dewittj
2016/06/16 19:45:36
Not sure this is totally necessary in the interfac
hirono
2016/06/17 04:56:46
Done.
| |
| 8 : parent_(parent) { | |
| 9 DCHECK(parent_); | |
| 10 } | |
| 11 | |
| 12 NotifierSource::~NotifierSource() {} | |
| 13 | |
| 14 void NotifierSource::OnNotifierSettingsClosing() {} | |
|
dewittj
2016/06/16 19:45:36
this could be inlined in the .h file
hirono
2016/06/17 04:56:46
Done.
| |
| OLD | NEW |