Chromium Code Reviews| Index: chrome/browser/notifications/notifier_source.cc |
| diff --git a/chrome/browser/notifications/notifier_source.cc b/chrome/browser/notifications/notifier_source.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e6892a8a46557b7fa53893e29947dc43f9dfadb7 |
| --- /dev/null |
| +++ b/chrome/browser/notifications/notifier_source.cc |
| @@ -0,0 +1,14 @@ |
| +// Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "chrome/browser/notifications/notifier_source.h" |
| + |
| +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.
|
| + : parent_(parent) { |
| + DCHECK(parent_); |
| +} |
| + |
| +NotifierSource::~NotifierSource() {} |
| + |
| +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.
|