diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-29 02:43:20 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-29 02:43:20 +0000 |
commit | 95e8108cbc0c398b9499c54974d49ebabeb3be00 (patch) | |
tree | 182f0463254f74909b4e3d1c303506a3f92ff5f2 /content/browser/in_process_webkit/indexed_db_callbacks.cc | |
parent | 21efac3548f79ac84e89ea828e59bf9f222c7a5d (diff) | |
download | chromium_src-95e8108cbc0c398b9499c54974d49ebabeb3be00.zip chromium_src-95e8108cbc0c398b9499c54974d49ebabeb3be00.tar.gz chromium_src-95e8108cbc0c398b9499c54974d49ebabeb3be00.tar.bz2 |
Move content\browser\in_process_webkit to content namespace.
Review URL: https://codereview.chromium.org/11344006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@164585 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/in_process_webkit/indexed_db_callbacks.cc')
-rw-r--r-- | content/browser/in_process_webkit/indexed_db_callbacks.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/in_process_webkit/indexed_db_callbacks.cc b/content/browser/in_process_webkit/indexed_db_callbacks.cc index 3279fa7..9244e07 100644 --- a/content/browser/in_process_webkit/indexed_db_callbacks.cc +++ b/content/browser/in_process_webkit/indexed_db_callbacks.cc @@ -7,9 +7,7 @@ #include "content/common/indexed_db/indexed_db_messages.h" #include "webkit/quota/quota_manager.h" -using content::IndexedDBKey; -using content::IndexedDBKeyPath; -using content::SerializedScriptValue; +namespace content { namespace { const int32 kDatabaseNotAdded = -1; @@ -219,3 +217,5 @@ void IndexedDBCallbacks<WebKit::WebSerializedScriptValue>::onSuccess() { new IndexedDBMsg_CallbacksSuccessUndefined(thread_id(), response_id())); } + +} // namespace content |