summaryrefslogtreecommitdiffstats
path: root/content/common
diff options
context:
space:
mode:
authormichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-17 01:25:04 +0000
committermichaeln@google.com <michaeln@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-17 01:25:04 +0000
commit1ea3c791e775d70095461804fb7cc7a19f1576ca (patch)
tree35620b05f8d931ee668ed747afc322e9bdd5f715 /content/common
parent4a64ea8eb45c6febf847037fa93e725d83eb0235 (diff)
downloadchromium_src-1ea3c791e775d70095461804fb7cc7a19f1576ca.zip
chromium_src-1ea3c791e775d70095461804fb7cc7a19f1576ca.tar.gz
chromium_src-1ea3c791e775d70095461804fb7cc7a19f1576ca.tar.bz2
More DomStorage house cleaning, many files but all mechanical changes.
- delete old in_process_webkit sources (hooray) - rename the new sources to no longer have the _new suffix - fix up the includes - remove the ENABLE_NEW_DOM_STORAGE_BACKEND flag since old stuff is now gone Review URL: https://chromiumcodereview.appspot.com/10086018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132504 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r--content/common/dom_storage_common.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/content/common/dom_storage_common.h b/content/common/dom_storage_common.h
deleted file mode 100644
index 3ad3d87..0000000
--- a/content/common/dom_storage_common.h
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright (c) 2010 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 CONTENT_COMMON_DOM_STORAGE_COMMON_H_
-#define CONTENT_COMMON_DOM_STORAGE_COMMON_H_
-#pragma once
-
-#include "build/build_config.h"
-
-#include "base/basictypes.h"
-#include "webkit/dom_storage/dom_storage_types.h"
-
-#ifdef ENABLE_NEW_DOM_STORAGE_BACKEND
-// TODO(michaeln): delete this file
-#else
-const int64 kLocalStorageNamespaceId = 0;
-const int64 kInvalidSessionStorageNamespaceId = kLocalStorageNamespaceId;
-
-enum DOMStorageType {
- DOM_STORAGE_LOCAL = 0,
- DOM_STORAGE_SESSION
-};
-#endif // ENABLE_NEW_DOM_STORAGE_BACKEND
-#endif // CONTENT_COMMON_DOM_STORAGE_COMMON_H_