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

Side by Side Diff: content/renderer/indexed_db_dispatcher.h

Issue 6703003: Move a bunch of html5 renderer code to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 months 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
« no previous file with comments | « content/renderer/geolocation_dispatcher.cc ('k') | content/renderer/indexed_db_dispatcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef CHROME_RENDERER_INDEXED_DB_DISPATCHER_H_ 5 #ifndef CONTENT_RENDERER_INDEXED_DB_DISPATCHER_H_
6 #define CHROME_RENDERER_INDEXED_DB_DISPATCHER_H_ 6 #define CONTENT_RENDERER_INDEXED_DB_DISPATCHER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/id_map.h" 9 #include "base/id_map.h"
10 #include "base/nullable_string16.h" 10 #include "base/nullable_string16.h"
11 #include "ipc/ipc_channel.h" 11 #include "ipc/ipc_channel.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h"
13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h" 13 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBCallbacks.h"
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabase.h" 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBDatabase.h"
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h" 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h"
16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCall backs.h" 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBTransactionCall backs.h"
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 // destroyed and used on the same thread it was created on. 166 // destroyed and used on the same thread it was created on.
167 IDMap<WebKit::WebIDBCallbacks, IDMapOwnPointer> pending_callbacks_; 167 IDMap<WebKit::WebIDBCallbacks, IDMapOwnPointer> pending_callbacks_;
168 IDMap<WebKit::WebIDBTransactionCallbacks, IDMapOwnPointer> 168 IDMap<WebKit::WebIDBTransactionCallbacks, IDMapOwnPointer>
169 pending_transaction_callbacks_; 169 pending_transaction_callbacks_;
170 IDMap<WebKit::WebIDBDatabaseCallbacks, IDMapOwnPointer> 170 IDMap<WebKit::WebIDBDatabaseCallbacks, IDMapOwnPointer>
171 pending_database_callbacks_; 171 pending_database_callbacks_;
172 172
173 DISALLOW_COPY_AND_ASSIGN(IndexedDBDispatcher); 173 DISALLOW_COPY_AND_ASSIGN(IndexedDBDispatcher);
174 }; 174 };
175 175
176 #endif // CHROME_RENDERER_INDEXED_DB_DISPATCHER_H_ 176 #endif // CONTENT_RENDERER_INDEXED_DB_DISPATCHER_H_
OLDNEW
« no previous file with comments | « content/renderer/geolocation_dispatcher.cc ('k') | content/renderer/indexed_db_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698