Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/browser/in_process_webkit/indexed_db_dispatcher_host.h" | 5 #include "chrome/browser/in_process_webkit/indexed_db_dispatcher_host.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
| 9 #include "chrome/browser/browser_thread.h" | 9 #include "chrome/browser/browser_thread.h" |
| 10 #include "chrome/browser/content_settings/host_content_settings_map.h" | 10 #include "chrome/browser/content_settings/host_content_settings_map.h" |
| 11 #include "chrome/browser/in_process_webkit/indexed_db_callbacks.h" | 11 #include "chrome/browser/in_process_webkit/indexed_db_callbacks.h" |
| 12 #include "chrome/browser/profiles/profile.h" | 12 #include "chrome/browser/profiles/profile.h" |
| 13 #include "chrome/browser/renderer_host/browser_render_process_host.h" | 13 #include "chrome/browser/renderer_host/browser_render_process_host.h" |
| 14 #include "chrome/browser/renderer_host/render_view_host_notification_task.h" | 14 #include "chrome/browser/renderer_host/render_view_host_notification_task.h" |
| 15 #include "chrome/browser/renderer_host/resource_message_filter.h" | 15 #include "chrome/browser/renderer_host/render_message_filter.h" |
|
willchan no longer on Chromium
2010/12/13 23:09:07
sort
| |
| 16 #include "chrome/common/chrome_switches.h" | 16 #include "chrome/common/chrome_switches.h" |
| 17 #include "chrome/common/indexed_db_messages.h" | 17 #include "chrome/common/indexed_db_messages.h" |
| 18 #include "googleurl/src/gurl.h" | 18 #include "googleurl/src/gurl.h" |
| 19 #include "third_party/WebKit/WebKit/chromium/public/WebDOMStringList.h" | 19 #include "third_party/WebKit/WebKit/chromium/public/WebDOMStringList.h" |
| 20 #include "third_party/WebKit/WebKit/chromium/public/WebIDBCursor.h" | 20 #include "third_party/WebKit/WebKit/chromium/public/WebIDBCursor.h" |
| 21 #include "third_party/WebKit/WebKit/chromium/public/WebIDBDatabase.h" | 21 #include "third_party/WebKit/WebKit/chromium/public/WebIDBDatabase.h" |
| 22 #include "third_party/WebKit/WebKit/chromium/public/WebIDBDatabaseError.h" | 22 #include "third_party/WebKit/WebKit/chromium/public/WebIDBDatabaseError.h" |
| 23 #include "third_party/WebKit/WebKit/chromium/public/WebIDBKeyRange.h" | 23 #include "third_party/WebKit/WebKit/chromium/public/WebIDBKeyRange.h" |
| 24 #include "third_party/WebKit/WebKit/chromium/public/WebIDBIndex.h" | 24 #include "third_party/WebKit/WebKit/chromium/public/WebIDBIndex.h" |
| 25 #include "third_party/WebKit/WebKit/chromium/public/WebIDBFactory.h" | 25 #include "third_party/WebKit/WebKit/chromium/public/WebIDBFactory.h" |
| (...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 959 return; | 959 return; |
| 960 | 960 |
| 961 idb_transaction->didCompleteTaskEvents(); | 961 idb_transaction->didCompleteTaskEvents(); |
| 962 } | 962 } |
| 963 | 963 |
| 964 void IndexedDBDispatcherHost::TransactionDispatcherHost::OnDestroyed( | 964 void IndexedDBDispatcherHost::TransactionDispatcherHost::OnDestroyed( |
| 965 int32 object_id) { | 965 int32 object_id) { |
| 966 parent_->DestroyObject( | 966 parent_->DestroyObject( |
| 967 &map_, object_id, IndexedDBHostMsg_TransactionDestroyed::ID); | 967 &map_, object_id, IndexedDBHostMsg_TransactionDestroyed::ID); |
| 968 } | 968 } |
| OLD | NEW |