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

Side by Side Diff: content/common/quota_messages.h

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 3 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/common/pepper_file_util.cc ('k') | content/common/resource_messages.h » ('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) 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 // Multiply-included message file, hence no include guard. 5 // Multiply-included message file, hence no include guard.
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "content/public/common/storage_quota_params.h" 8 #include "content/public/common/storage_quota_params.h"
9 #include "ipc/ipc_message_macros.h" 9 #include "ipc/ipc_message_macros.h"
10 #include "url/gurl.h" 10 #include "url/gurl.h"
11 #include "webkit/common/quota/quota_types.h" 11 #include "webkit/common/quota/quota_types.h"
12 12
13 #define IPC_MESSAGE_START QuotaMsgStart 13 #define IPC_MESSAGE_START QuotaMsgStart
14 14
15 IPC_ENUM_TRAITS_MAX_VALUE(quota::StorageType, quota::kStorageTypeLast) 15 IPC_ENUM_TRAITS_MAX_VALUE(storage::StorageType, storage::kStorageTypeLast)
16 IPC_ENUM_TRAITS(quota::QuotaStatusCode) 16 IPC_ENUM_TRAITS(storage::QuotaStatusCode)
17 17
18 IPC_STRUCT_TRAITS_BEGIN(content::StorageQuotaParams) 18 IPC_STRUCT_TRAITS_BEGIN(content::StorageQuotaParams)
19 IPC_STRUCT_TRAITS_MEMBER(render_view_id) 19 IPC_STRUCT_TRAITS_MEMBER(render_view_id)
20 IPC_STRUCT_TRAITS_MEMBER(request_id) 20 IPC_STRUCT_TRAITS_MEMBER(request_id)
21 IPC_STRUCT_TRAITS_MEMBER(origin_url) 21 IPC_STRUCT_TRAITS_MEMBER(origin_url)
22 IPC_STRUCT_TRAITS_MEMBER(storage_type) 22 IPC_STRUCT_TRAITS_MEMBER(storage_type)
23 IPC_STRUCT_TRAITS_MEMBER(requested_size) 23 IPC_STRUCT_TRAITS_MEMBER(requested_size)
24 IPC_STRUCT_TRAITS_MEMBER(user_gesture) 24 IPC_STRUCT_TRAITS_MEMBER(user_gesture)
25 IPC_STRUCT_TRAITS_END() 25 IPC_STRUCT_TRAITS_END()
26 26
27 // Quota messages sent from the browser to the child process. 27 // Quota messages sent from the browser to the child process.
28 28
29 IPC_MESSAGE_CONTROL3(QuotaMsg_DidGrantStorageQuota, 29 IPC_MESSAGE_CONTROL3(QuotaMsg_DidGrantStorageQuota,
30 int /* request_id */, 30 int /* request_id */,
31 int64 /* current_usage */, 31 int64 /* current_usage */,
32 int64 /* granted_quota */) 32 int64 /* granted_quota */)
33 33
34 IPC_MESSAGE_CONTROL3(QuotaMsg_DidQueryStorageUsageAndQuota, 34 IPC_MESSAGE_CONTROL3(QuotaMsg_DidQueryStorageUsageAndQuota,
35 int /* request_id */, 35 int /* request_id */,
36 int64 /* current_usage */, 36 int64 /* current_usage */,
37 int64 /* current_quota */) 37 int64 /* current_quota */)
38 38
39 IPC_MESSAGE_CONTROL2(QuotaMsg_DidFail, 39 IPC_MESSAGE_CONTROL2(QuotaMsg_DidFail,
40 int /* request_id */, 40 int /* request_id */,
41 quota::QuotaStatusCode /* error */) 41 storage::QuotaStatusCode /* error */)
42 42
43 // Quota messages sent from the child process to the browser. 43 // Quota messages sent from the child process to the browser.
44 44
45 IPC_MESSAGE_CONTROL3(QuotaHostMsg_QueryStorageUsageAndQuota, 45 IPC_MESSAGE_CONTROL3(QuotaHostMsg_QueryStorageUsageAndQuota,
46 int /* request_id */, 46 int /* request_id */,
47 GURL /* origin_url */, 47 GURL /* origin_url */,
48 quota::StorageType /* type */) 48 storage::StorageType /* type */)
49 49
50 IPC_MESSAGE_CONTROL1(QuotaHostMsg_RequestStorageQuota, 50 IPC_MESSAGE_CONTROL1(QuotaHostMsg_RequestStorageQuota,
51 content::StorageQuotaParams) 51 content::StorageQuotaParams)
OLDNEW
« no previous file with comments | « content/common/pepper_file_util.cc ('k') | content/common/resource_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698