summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/settings/settings_namespace.cc
blob: 7340592468da90ee157d7b3831468f5d26225662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) 2011 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/extensions/settings/settings_namespace.h"

#include "base/logging.h"

namespace extensions {

namespace settings_namespace {

namespace {
const char* kLocalNamespace = "local";
const char* kSyncNamespace  = "sync";
}  // namespace

std::string ToString(Namespace settings_namespace) {
  switch (settings_namespace) {
    case LOCAL: return kLocalNamespace;
    case SYNC:  return kSyncNamespace;
    case INVALID:
    default: NOTREACHED();
  }
  return std::string();
}

Namespace FromString(const std::string& namespace_string) {
  if (namespace_string == kLocalNamespace)
    return LOCAL;
  else if (namespace_string == kSyncNamespace)
    return SYNC;
  return INVALID;
}

}  // namespace settings_namespace

}  // namespace extensions