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

Side by Side Diff: chrome/common/dom_storage_messages.h

Issue 5722003: Make DOMStorageDispatcherHost be a message filter (and rename it accordingly)... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync Created 10 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_COMMON_DOM_STORAGE_MESSAGES_H_
6 #define CHROME_COMMON_DOM_STORAGE_MESSAGES_H_
7 #pragma once
8
9 #include "chrome/common/dom_storage_common.h"
10 #include "googleurl/src/gurl.h"
11 #include "ipc/ipc_message_macros.h"
12 #include "ipc/ipc_param_traits.h"
13 #include "third_party/WebKit/WebKit/chromium/public/WebStorageArea.h"
14
15 #define IPC_MESSAGE_START DOMStorageMsgStart
16
17 // Signals a storage event.
18 struct DOMStorageMsg_Event_Params {
19 DOMStorageMsg_Event_Params();
20 ~DOMStorageMsg_Event_Params();
21
22 // The key that generated the storage event. Null if clear() was called.
23 NullableString16 key;
24
25 // The old value of this key. Null on clear() or if it didn't have a value.
26 NullableString16 old_value;
27
28 // The new value of this key. Null on removeItem() or clear().
29 NullableString16 new_value;
30
31 // The origin this is associated with.
32 string16 origin;
33
34 // The URL of the page that caused the storage event.
35 GURL url;
36
37 // The storage type of this event.
38 DOMStorageType storage_type;
39 };
40
41 namespace IPC {
42
43 template <>
44 struct ParamTraits<DOMStorageMsg_Event_Params> {
45 typedef DOMStorageMsg_Event_Params param_type;
46 static void Write(Message* m, const param_type& p);
47 static bool Read(const Message* m, void** iter, param_type* p);
48 static void Log(const param_type& p, std::string* l);
49 };
50
51 template <>
52 struct ParamTraits<DOMStorageType> {
53 typedef DOMStorageType param_type;
54 static void Write(Message* m, const param_type& p);
55 static bool Read(const Message* m, void** iter, param_type* p);
56 static void Log(const param_type& p, std::string* l);
57 };
58
59 template <>
60 struct ParamTraits<WebKit::WebStorageArea::Result> {
61 typedef WebKit::WebStorageArea::Result param_type;
62 static void Write(Message* m, const param_type& p);
63 static bool Read(const Message* m, void** iter, param_type* p);
64 static void Log(const param_type& p, std::string* l);
65 };
66
67 } // namespace IPC
68
69 // DOM Storage messages sent from the browser to the renderer.
70
71 // Storage events are broadcast to renderer processes.
72 IPC_MESSAGE_CONTROL1(DOMStorageMsg_Event,
73 DOMStorageMsg_Event_Params)
74
75
76 // DOM Storage messages sent from the renderer to the browser.
77
78
79 // Get the storage area id for a particular origin within a namespace.
80 IPC_SYNC_MESSAGE_CONTROL2_1(DOMStorageHostMsg_StorageAreaId,
81 int64 /* namespace_id */,
82 string16 /* origin */,
83 int64 /* storage_area_id */)
84
85 // Get the length of a storage area.
86 IPC_SYNC_MESSAGE_CONTROL1_1(DOMStorageHostMsg_Length,
87 int64 /* storage_area_id */,
88 unsigned /* length */)
89
90 // Get a the ith key within a storage area.
91 IPC_SYNC_MESSAGE_CONTROL2_1(DOMStorageHostMsg_Key,
92 int64 /* storage_area_id */,
93 unsigned /* index */,
94 NullableString16 /* key */)
95
96 // Get a value based on a key from a storage area.
97 IPC_SYNC_MESSAGE_CONTROL2_1(DOMStorageHostMsg_GetItem,
98 int64 /* storage_area_id */,
99 string16 /* key */,
100 NullableString16 /* value */)
101
102 // Set a value that's associated with a key in a storage area.
103 IPC_SYNC_MESSAGE_ROUTED4_2(DOMStorageHostMsg_SetItem,
104 int64 /* storage_area_id */,
105 string16 /* key */,
106 string16 /* value */,
107 GURL /* url */,
108 WebKit::WebStorageArea::Result /* result */,
109 NullableString16 /* old_value */)
110
111 // Remove the value associated with a key in a storage area.
112 IPC_SYNC_MESSAGE_CONTROL3_1(DOMStorageHostMsg_RemoveItem,
113 int64 /* storage_area_id */,
114 string16 /* key */,
115 GURL /* url */,
116 NullableString16 /* old_value */)
117
118 // Clear the storage area.
119 IPC_SYNC_MESSAGE_CONTROL2_1(DOMStorageHostMsg_Clear,
120 int64 /* storage_area_id */,
121 GURL /* url */,
122 bool /* something_cleared */)
123
124 #endif // CHROME_COMMON_DOM_STORAGE_MESSAGES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698