summaryrefslogtreecommitdiffstats
path: root/ash/system/system_notifier.cc
blob: a765ee1c33b6e664684129b906e83a2d2e1d8567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2013 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 "ash/system/system_notifier.h"

#include "base/logging.h"

namespace ash {

std::string SystemComponentTypeToString(AshSystemComponentNotifierType type) {
  if (type == NOTIFIER_SCREENSHOT)
    return "screenshot";

  // TODO(mukai): fill the names of other components.
  NOTIMPLEMENTED();
  return std::string();
}

}  // namespace