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

Side by Side Diff: ui/message_center/dummy_message_center.cc

Issue 15025002: Remove ENABLE_MESSAGE_CENTER (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixing static initializer Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « chrome/test/base/view_event_test_base.cc ('k') | ui/message_center/message_center.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ui/message_center/message_center.h"
6 #include "ui/message_center/message_center_switches.h"
7 #include "ui/message_center/message_center_util.h"
8
9 // This file contains dummy implementation of MessageCenter and used to compile
10 // and link with Android and iOS implementations of Chrome which do not have
11 // notification systems yet. This is to avoid spreading compile-time flags
12 // everywhere in the code.
13 #if !defined(OS_ANDROID) && !defined(OS_IOS)
14 #error This file should only be used in Android or iOS builds.
15 #endif
16
17 namespace message_center {
18
19 bool IsRichNotificationEnabled() {
20 return false;
21 }
22
23 // static
24 void MessageCenter::Initialize() {
25 }
26
27 // static
28 MessageCenter* MessageCenter::Get() {
29 return NULL;
30 }
31
32 // static
33 void MessageCenter::Shutdown() {
34 }
35
36 MessageCenter::MessageCenter() {
37 }
38
39 MessageCenter::~MessageCenter() {
40 }
41
42 MessageCenter::Delegate::~Delegate() {
43 }
44
45 } // namespace message_center
OLDNEW
« no previous file with comments | « chrome/test/base/view_event_test_base.cc ('k') | ui/message_center/message_center.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698