Index: chrome/browser/extensions/settings/settings_namespace.cc |
diff --git a/chrome/browser/extensions/settings/settings_namespace.cc b/chrome/browser/extensions/settings/settings_namespace.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7340592468da90ee157d7b3831468f5d26225662 |
--- /dev/null |
+++ b/chrome/browser/extensions/settings/settings_namespace.cc |
@@ -0,0 +1,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 |