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/common/dom_storage_messages.h" |
| 6 |
5 #include "content/common/common_param_traits.h" | 7 #include "content/common/common_param_traits.h" |
6 | 8 |
7 #define IPC_MESSAGE_IMPL | |
8 #include "chrome/common/dom_storage_messages.h" | |
9 | 9 |
10 DOMStorageMsg_Event_Params::DOMStorageMsg_Event_Params() | 10 DOMStorageMsg_Event_Params::DOMStorageMsg_Event_Params() |
11 : storage_type(DOM_STORAGE_LOCAL) { | 11 : storage_type(DOM_STORAGE_LOCAL) { |
12 } | 12 } |
13 | 13 |
14 DOMStorageMsg_Event_Params::~DOMStorageMsg_Event_Params() { | 14 DOMStorageMsg_Event_Params::~DOMStorageMsg_Event_Params() { |
15 } | 15 } |
16 | 16 |
17 namespace IPC { | 17 namespace IPC { |
18 | 18 |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 break; | 116 break; |
117 default: | 117 default: |
118 NOTIMPLEMENTED(); | 118 NOTIMPLEMENTED(); |
119 control = "UNKNOWN"; | 119 control = "UNKNOWN"; |
120 break; | 120 break; |
121 } | 121 } |
122 LogParam(control, l); | 122 LogParam(control, l); |
123 } | 123 } |
124 | 124 |
125 } // namespace IPC | 125 } // namespace IPC |
OLD | NEW |