Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Side by Side Diff: content/browser/in_process_webkit/indexed_db_dispatcher_host.cc

Issue 8980002: Move indexeddb code to its own directory inside of content/{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reorder includes Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h" 5 #include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/utf_string_conversions.h" 9 #include "base/utf_string_conversions.h"
10 #include "content/browser/in_process_webkit/indexed_db_callbacks.h" 10 #include "content/browser/in_process_webkit/indexed_db_callbacks.h"
11 #include "content/browser/in_process_webkit/indexed_db_database_callbacks.h" 11 #include "content/browser/in_process_webkit/indexed_db_database_callbacks.h"
12 #include "content/browser/in_process_webkit/indexed_db_transaction_callbacks.h" 12 #include "content/browser/in_process_webkit/indexed_db_transaction_callbacks.h"
13 #include "content/browser/renderer_host/render_message_filter.h" 13 #include "content/browser/renderer_host/render_message_filter.h"
14 #include "content/common/indexed_db_messages.h" 14 #include "content/common/indexed_db/indexed_db_messages.h"
15 #include "content/public/browser/browser_thread.h" 15 #include "content/public/browser/browser_thread.h"
16 #include "content/public/browser/user_metrics.h" 16 #include "content/public/browser/user_metrics.h"
17 #include "content/public/common/content_switches.h" 17 #include "content/public/common/content_switches.h"
18 #include "content/public/common/result_codes.h" 18 #include "content/public/common/result_codes.h"
19 #include "googleurl/src/gurl.h" 19 #include "googleurl/src/gurl.h"
20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMStringList.h" 20 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDOMStringList.h"
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCursor.h" 21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCursor.h"
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabase.h" 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabase.h"
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabaseError.h " 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabaseError.h "
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h" 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h"
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1180 } 1180 }
1181 idb_transaction->didCompleteTaskEvents(); 1181 idb_transaction->didCompleteTaskEvents();
1182 } 1182 }
1183 1183
1184 void IndexedDBDispatcherHost::TransactionDispatcherHost::OnDestroyed( 1184 void IndexedDBDispatcherHost::TransactionDispatcherHost::OnDestroyed(
1185 int32 object_id) { 1185 int32 object_id) {
1186 transaction_size_map_.erase(object_id); 1186 transaction_size_map_.erase(object_id);
1187 transaction_url_map_.erase(object_id); 1187 transaction_url_map_.erase(object_id);
1188 parent_->DestroyObject(&map_, object_id); 1188 parent_->DestroyObject(&map_, object_id);
1189 } 1189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698