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

Side by Side Diff: content/common/indexed_db/indexed_db_messages.h

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: rebase onto ToT 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 // Message definition file, included multiple times, hence no include guard. 5 // Message definition file, included multiple times, hence no include guard.
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "content/common/indexed_db_key.h" 9 #include "content/common/indexed_db/indexed_db_key.h"
10 #include "content/common/indexed_db_param_traits.h" 10 #include "content/common/indexed_db/indexed_db_param_traits.h"
11 #include "content/public/common/serialized_script_value.h" 11 #include "content/public/common/serialized_script_value.h"
12 #include "ipc/ipc_message_macros.h" 12 #include "ipc/ipc_message_macros.h"
13 #include "ipc/ipc_param_traits.h" 13 #include "ipc/ipc_param_traits.h"
14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h" 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebExceptionCode.h"
15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h" 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBObjectStore.h"
16 16
17 #define IPC_MESSAGE_START IndexedDBMsgStart 17 #define IPC_MESSAGE_START IndexedDBMsgStart
18 18
19 // Argument structures used in messages 19 // Argument structures used in messages
20 20
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after
540 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort, 540 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionAbort,
541 int32 /* idb_transaction_id */) 541 int32 /* idb_transaction_id */)
542 542
543 // IDBTransaction::DidCompleteTaskEvents() message. 543 // IDBTransaction::DidCompleteTaskEvents() message.
544 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents, 544 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDidCompleteTaskEvents,
545 int32 /* idb_transaction_id */) 545 int32 /* idb_transaction_id */)
546 546
547 // WebIDBTransaction::~WebIDBTransaction() message. 547 // WebIDBTransaction::~WebIDBTransaction() message.
548 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed, 548 IPC_MESSAGE_CONTROL1(IndexedDBHostMsg_TransactionDestroyed,
549 int32 /* idb_transaction_id */) 549 int32 /* idb_transaction_id */)
OLDNEW
« no previous file with comments | « content/common/indexed_db/indexed_db_key.cc ('k') | content/common/indexed_db/indexed_db_param_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698