dummy_message_center.cc revision a02191e04bc25c4935f804f2c080ae28663d096d
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
17namespace message_center {
18
19// static
20void MessageCenter::Initialize() {
21}
22
23// static
24MessageCenter* MessageCenter::Get() {
25  return NULL;
26}
27
28// static
29void MessageCenter::Shutdown() {
30}
31
32MessageCenter::MessageCenter() {
33}
34
35MessageCenter::~MessageCenter() {
36}
37
38}  // namespace message_center
39