diff options
author | dgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-20 22:04:28 +0000 |
---|---|---|
committer | dgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-20 22:04:28 +0000 |
commit | 44e1fbf0fd0a14a375ebbbc56392956683f6261c (patch) | |
tree | 8e2e248a5f0f4b90d3d9d8107543607e930f7481 /content/common | |
parent | 7b5859e7f5d4b5486db5220106dfb80e10b97449 (diff) | |
download | chromium_src-44e1fbf0fd0a14a375ebbbc56392956683f6261c.zip chromium_src-44e1fbf0fd0a14a375ebbbc56392956683f6261c.tar.gz chromium_src-44e1fbf0fd0a14a375ebbbc56392956683f6261c.tar.bz2 |
Move indexeddb code to its own directory inside of content/{browser,common,renderer}
BUG=105949
TEST=
Review URL: http://codereview.chromium.org/8980002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@115195 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common')
-rw-r--r-- | content/common/content_message_generator.h | 2 | ||||
-rw-r--r-- | content/common/indexed_db/OWNERS | 4 | ||||
-rw-r--r-- | content/common/indexed_db/indexed_db_key.cc (renamed from content/common/indexed_db_key.cc) | 2 | ||||
-rw-r--r-- | content/common/indexed_db/indexed_db_key.h (renamed from content/common/indexed_db_key.h) | 6 | ||||
-rw-r--r-- | content/common/indexed_db/indexed_db_messages.h (renamed from content/common/indexed_db_messages.h) | 4 | ||||
-rw-r--r-- | content/common/indexed_db/indexed_db_param_traits.cc (renamed from content/common/indexed_db_param_traits.cc) | 4 | ||||
-rw-r--r-- | content/common/indexed_db/indexed_db_param_traits.h (renamed from content/common/indexed_db_param_traits.h) | 8 | ||||
-rw-r--r-- | content/common/utility_messages.h | 4 |
8 files changed, 19 insertions, 15 deletions
diff --git a/content/common/content_message_generator.h b/content/common/content_message_generator.h index 3f7a55a..d00867a 100644 --- a/content/common/content_message_generator.h +++ b/content/common/content_message_generator.h @@ -19,7 +19,7 @@ #include "content/common/gamepad_messages.h" #include "content/common/geolocation_messages.h" #include "content/common/gpu/gpu_messages.h" -#include "content/common/indexed_db_messages.h" +#include "content/common/indexed_db/indexed_db_messages.h" #include "content/common/intents_messages.h" #include "content/common/java_bridge_messages.h" #include "content/common/media/audio_messages.h" diff --git a/content/common/indexed_db/OWNERS b/content/common/indexed_db/OWNERS new file mode 100644 index 0000000..65287b4 --- /dev/null +++ b/content/common/indexed_db/OWNERS @@ -0,0 +1,4 @@ +dgrogan@chromium.org +hans@chromium.org +michaeln@chromium.org +jsbell@chromium.org diff --git a/content/common/indexed_db_key.cc b/content/common/indexed_db/indexed_db_key.cc index 4f76873..dd17e81 100644 --- a/content/common/indexed_db_key.cc +++ b/content/common/indexed_db/indexed_db_key.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "content/common/indexed_db_key.h" +#include "content/common/indexed_db/indexed_db_key.h" #include "base/logging.h" #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" diff --git a/content/common/indexed_db_key.h b/content/common/indexed_db/indexed_db_key.h index 93daf7c..12b6a53 100644 --- a/content/common/indexed_db_key.h +++ b/content/common/indexed_db/indexed_db_key.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef CONTENT_COMMON_INDEXED_DB_KEY_H_ -#define CONTENT_COMMON_INDEXED_DB_KEY_H_ +#ifndef CONTENT_COMMON_INDEXED_DB_INDEXED_DB_KEY_H_ +#define CONTENT_COMMON_INDEXED_DB_INDEXED_DB_KEY_H_ #pragma once #include <vector> @@ -42,4 +42,4 @@ class CONTENT_EXPORT IndexedDBKey { double number_; }; -#endif // CONTENT_COMMON_INDEXED_DB_KEY_H_ +#endif // CONTENT_COMMON_INDEXED_DB_INDEXED_DB_KEY_H_ diff --git a/content/common/indexed_db_messages.h b/content/common/indexed_db/indexed_db_messages.h index 82c4b29..9484b23 100644 --- a/content/common/indexed_db_messages.h +++ b/content/common/indexed_db/indexed_db_messages.h @@ -6,8 +6,8 @@ #include <vector> -#include "content/common/indexed_db_key.h" -#include "content/common/indexed_db_param_traits.h" +#include "content/common/indexed_db/indexed_db_key.h" +#include "content/common/indexed_db/indexed_db_param_traits.h" #include "content/public/common/serialized_script_value.h" #include "ipc/ipc_message_macros.h" #include "ipc/ipc_param_traits.h" diff --git a/content/common/indexed_db_param_traits.cc b/content/common/indexed_db/indexed_db_param_traits.cc index 5c3eb95..ac3d20f 100644 --- a/content/common/indexed_db_param_traits.cc +++ b/content/common/indexed_db/indexed_db_param_traits.cc @@ -2,9 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "content/common/indexed_db_param_traits.h" +#include "content/common/indexed_db/indexed_db_param_traits.h" -#include "content/common/indexed_db_key.h" +#include "content/common/indexed_db/indexed_db_key.h" #include "content/public/common/serialized_script_value.h" #include "ipc/ipc_message_utils.h" diff --git a/content/common/indexed_db_param_traits.h b/content/common/indexed_db/indexed_db_param_traits.h index d94c1bd..3112342 100644 --- a/content/common/indexed_db_param_traits.h +++ b/content/common/indexed_db/indexed_db_param_traits.h @@ -1,9 +1,9 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// 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. -#ifndef CONTENT_COMMON_INDEXED_DB_PARAM_TRAITS_H_ -#define CONTENT_COMMON_INDEXED_DB_PARAM_TRAITS_H_ +#ifndef CONTENT_COMMON_INDEXED_DB_INDEXED_DB_PARAM_TRAITS_H_ +#define CONTENT_COMMON_INDEXED_DB_INDEXED_DB_PARAM_TRAITS_H_ #pragma once #include "ipc/ipc_message.h" @@ -40,4 +40,4 @@ struct ParamTraits<IndexedDBKey> { } // namespace IPC -#endif // CONTENT_COMMON_INDEXED_DB_PARAM_TRAITS_H_ +#endif // CONTENT_COMMON_INDEXED_DB_INDEXED_DB_PARAM_TRAITS_H_ diff --git a/content/common/utility_messages.h b/content/common/utility_messages.h index 8d0f201..6972a55 100644 --- a/content/common/utility_messages.h +++ b/content/common/utility_messages.h @@ -8,8 +8,8 @@ #include <vector> #include "base/basictypes.h" -#include "content/common/indexed_db_key.h" -#include "content/common/indexed_db_param_traits.h" +#include "content/common/indexed_db/indexed_db_key.h" +#include "content/common/indexed_db/indexed_db_param_traits.h" #include "content/public/common/common_param_traits.h" #include "content/public/common/serialized_script_value.h" #include "ipc/ipc_message_macros.h" |