OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 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/extensions/settings/settings_namespace.h" |
| 6 |
| 7 #include "base/logging.h" |
| 8 |
| 9 namespace extensions { |
| 10 |
| 11 namespace settings_namespace { |
| 12 |
| 13 namespace { |
| 14 const char* kLocalNamespace = "local"; |
| 15 const char* kSyncNamespace = "sync"; |
| 16 } // namespace |
| 17 |
| 18 std::string ToString(Namespace settings_namespace) { |
| 19 switch (settings_namespace) { |
| 20 case LOCAL: return kLocalNamespace; |
| 21 case SYNC: return kSyncNamespace; |
| 22 case INVALID: |
| 23 default: NOTREACHED(); |
| 24 } |
| 25 return std::string(); |
| 26 } |
| 27 |
| 28 Namespace FromString(const std::string& namespace_string) { |
| 29 if (namespace_string == kLocalNamespace) |
| 30 return LOCAL; |
| 31 else if (namespace_string == kSyncNamespace) |
| 32 return SYNC; |
| 33 return INVALID; |
| 34 } |
| 35 |
| 36 } // namespace settings_namespace |
| 37 |
| 38 } // namespace extensions |
OLD | NEW |