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

Side by Side Diff: content/public/common/common_param_traits_macros.h

Issue 2905283003: Remove a bunch of dead code around WindowFeatures (Closed)
Patch Set: Add missing #include Created 3 years, 6 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Singly or Multiply-included shared traits file depending on circumstances. 5 // Singly or Multiply-included shared traits file depending on circumstances.
6 // This allows the use of IPC serialization macros in more than one IPC message 6 // This allows the use of IPC serialization macros in more than one IPC message
7 // file. 7 // file.
8 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ 8 #ifndef CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
9 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ 9 #define CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
10 10
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 IPC_STRUCT_TRAITS_MEMBER(has_x) 263 IPC_STRUCT_TRAITS_MEMBER(has_x)
264 IPC_STRUCT_TRAITS_MEMBER(y) 264 IPC_STRUCT_TRAITS_MEMBER(y)
265 IPC_STRUCT_TRAITS_MEMBER(has_y) 265 IPC_STRUCT_TRAITS_MEMBER(has_y)
266 IPC_STRUCT_TRAITS_MEMBER(width) 266 IPC_STRUCT_TRAITS_MEMBER(width)
267 IPC_STRUCT_TRAITS_MEMBER(has_width) 267 IPC_STRUCT_TRAITS_MEMBER(has_width)
268 IPC_STRUCT_TRAITS_MEMBER(height) 268 IPC_STRUCT_TRAITS_MEMBER(height)
269 IPC_STRUCT_TRAITS_MEMBER(has_height) 269 IPC_STRUCT_TRAITS_MEMBER(has_height)
270 IPC_STRUCT_TRAITS_MEMBER(menu_bar_visible) 270 IPC_STRUCT_TRAITS_MEMBER(menu_bar_visible)
271 IPC_STRUCT_TRAITS_MEMBER(status_bar_visible) 271 IPC_STRUCT_TRAITS_MEMBER(status_bar_visible)
272 IPC_STRUCT_TRAITS_MEMBER(tool_bar_visible) 272 IPC_STRUCT_TRAITS_MEMBER(tool_bar_visible)
273 IPC_STRUCT_TRAITS_MEMBER(location_bar_visible)
274 IPC_STRUCT_TRAITS_MEMBER(scrollbars_visible) 273 IPC_STRUCT_TRAITS_MEMBER(scrollbars_visible)
275 IPC_STRUCT_TRAITS_MEMBER(resizable)
276 IPC_STRUCT_TRAITS_MEMBER(fullscreen)
277 IPC_STRUCT_TRAITS_MEMBER(dialog)
278 IPC_STRUCT_TRAITS_END() 274 IPC_STRUCT_TRAITS_END()
279 275
280 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEvent, ui::AX_EVENT_LAST) 276 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEvent, ui::AX_EVENT_LAST)
281 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXRole, ui::AX_ROLE_LAST) 277 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXRole, ui::AX_ROLE_LAST)
282 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXBoolAttribute, ui::AX_BOOL_ATTRIBUTE_LAST) 278 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXBoolAttribute, ui::AX_BOOL_ATTRIBUTE_LAST)
283 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXFloatAttribute, ui::AX_FLOAT_ATTRIBUTE_LAST) 279 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXFloatAttribute, ui::AX_FLOAT_ATTRIBUTE_LAST)
284 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntAttribute, ui::AX_INT_ATTRIBUTE_LAST) 280 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntAttribute, ui::AX_INT_ATTRIBUTE_LAST)
285 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntListAttribute, 281 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntListAttribute,
286 ui::AX_INT_LIST_ATTRIBUTE_LAST) 282 ui::AX_INT_LIST_ATTRIBUTE_LAST)
287 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST) 283 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST)
288 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) 284 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST)
289 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) 285 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST)
290 286
291 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) 287 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds)
292 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) 288 IPC_STRUCT_TRAITS_MEMBER(offset_container_id)
293 IPC_STRUCT_TRAITS_MEMBER(bounds) 289 IPC_STRUCT_TRAITS_MEMBER(bounds)
294 IPC_STRUCT_TRAITS_MEMBER(transform) 290 IPC_STRUCT_TRAITS_MEMBER(transform)
295 IPC_STRUCT_TRAITS_END() 291 IPC_STRUCT_TRAITS_END()
296 292
297 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ 293 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698