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

Side by Side Diff: chrome/browser/notifications/notifier_source.cc

Issue 2064363002: Refactor MessageCenterSettingsController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unrelated files from the patch. 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 unified diff | Download patch
OLDNEW
(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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698