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

Unified Diff: chrome/browser/notifications/notifier_source.cc

Issue 2064363002: Refactor MessageCenterSettingsController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase onto associated CL. Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
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)
+ : parent_(parent) {
+ DCHECK(parent_);
+}
+
+NotifierSource::~NotifierSource() {}
+
+void NotifierSource::OnNotifierSettingsClosing() {}

Powered by Google App Engine
This is Rietveld 408576698