summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/settings/settings_namespace.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/settings/settings_namespace.h')
-rw-r--r--chrome/browser/extensions/settings/settings_namespace.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/chrome/browser/extensions/settings/settings_namespace.h b/chrome/browser/extensions/settings/settings_namespace.h
deleted file mode 100644
index c89658b..0000000
--- a/chrome/browser/extensions/settings/settings_namespace.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CHROME_BROWSER_EXTENSIONS_SETTINGS_SETTINGS_NAMESPACE_H_
-#define CHROME_BROWSER_EXTENSIONS_SETTINGS_SETTINGS_NAMESPACE_H_
-
-#include <string>
-
-namespace extensions {
-
-namespace settings_namespace {
-
-// The namespaces of the storage areas.
-enum Namespace {
- LOCAL, // "local" i.e. chrome.storage.local
- SYNC, // "sync" i.e. chrome.storage.sync
- MANAGED, // "managed" i.e. chrome.storage.managed
- INVALID
-};
-
-// Converts a namespace to its string representation.
-// Namespace must not be INVALID.
-std::string ToString(Namespace settings_namespace);
-
-// Converts a string representation of a namespace to its namespace, or INVALID
-// if the string doesn't map to one.
-Namespace FromString(const std::string& ns_string);
-
-} // namespace settings_namespace
-
-} // namespace extensions
-
-#endif // CHROME_BROWSER_EXTENSIONS_SETTINGS_SETTINGS_NAMESPACE_H_