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

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: Use WebWindowFeatures everywhere 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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 IPC_STRUCT_TRAITS_MEMBER(has_x) 264 IPC_STRUCT_TRAITS_MEMBER(has_x)
265 IPC_STRUCT_TRAITS_MEMBER(y) 265 IPC_STRUCT_TRAITS_MEMBER(y)
266 IPC_STRUCT_TRAITS_MEMBER(has_y) 266 IPC_STRUCT_TRAITS_MEMBER(has_y)
267 IPC_STRUCT_TRAITS_MEMBER(width) 267 IPC_STRUCT_TRAITS_MEMBER(width)
268 IPC_STRUCT_TRAITS_MEMBER(has_width) 268 IPC_STRUCT_TRAITS_MEMBER(has_width)
269 IPC_STRUCT_TRAITS_MEMBER(height) 269 IPC_STRUCT_TRAITS_MEMBER(height)
270 IPC_STRUCT_TRAITS_MEMBER(has_height) 270 IPC_STRUCT_TRAITS_MEMBER(has_height)
271 IPC_STRUCT_TRAITS_MEMBER(menu_bar_visible) 271 IPC_STRUCT_TRAITS_MEMBER(menu_bar_visible)
272 IPC_STRUCT_TRAITS_MEMBER(status_bar_visible) 272 IPC_STRUCT_TRAITS_MEMBER(status_bar_visible)
273 IPC_STRUCT_TRAITS_MEMBER(tool_bar_visible) 273 IPC_STRUCT_TRAITS_MEMBER(tool_bar_visible)
274 IPC_STRUCT_TRAITS_MEMBER(location_bar_visible)
275 IPC_STRUCT_TRAITS_MEMBER(scrollbars_visible) 274 IPC_STRUCT_TRAITS_MEMBER(scrollbars_visible)
276 IPC_STRUCT_TRAITS_MEMBER(resizable)
277 IPC_STRUCT_TRAITS_MEMBER(fullscreen)
278 IPC_STRUCT_TRAITS_MEMBER(dialog)
279 IPC_STRUCT_TRAITS_END() 275 IPC_STRUCT_TRAITS_END()
280 276
281 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEvent, ui::AX_EVENT_LAST) 277 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEvent, ui::AX_EVENT_LAST)
282 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXRole, ui::AX_ROLE_LAST) 278 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXRole, ui::AX_ROLE_LAST)
283 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXBoolAttribute, ui::AX_BOOL_ATTRIBUTE_LAST) 279 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXBoolAttribute, ui::AX_BOOL_ATTRIBUTE_LAST)
284 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXFloatAttribute, ui::AX_FLOAT_ATTRIBUTE_LAST) 280 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXFloatAttribute, ui::AX_FLOAT_ATTRIBUTE_LAST)
285 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntAttribute, ui::AX_INT_ATTRIBUTE_LAST) 281 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntAttribute, ui::AX_INT_ATTRIBUTE_LAST)
286 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntListAttribute, 282 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXIntListAttribute,
287 ui::AX_INT_LIST_ATTRIBUTE_LAST) 283 ui::AX_INT_LIST_ATTRIBUTE_LAST)
288 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST) 284 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXStringAttribute, ui::AX_STRING_ATTRIBUTE_LAST)
289 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST) 285 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXTextAffinity, ui::AX_TEXT_AFFINITY_LAST)
290 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST) 286 IPC_ENUM_TRAITS_MAX_VALUE(ui::AXEventFrom, ui::AX_EVENT_FROM_LAST)
291 287
292 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds) 288 IPC_STRUCT_TRAITS_BEGIN(ui::AXRelativeBounds)
293 IPC_STRUCT_TRAITS_MEMBER(offset_container_id) 289 IPC_STRUCT_TRAITS_MEMBER(offset_container_id)
294 IPC_STRUCT_TRAITS_MEMBER(bounds) 290 IPC_STRUCT_TRAITS_MEMBER(bounds)
295 IPC_STRUCT_TRAITS_MEMBER(transform) 291 IPC_STRUCT_TRAITS_MEMBER(transform)
296 IPC_STRUCT_TRAITS_END() 292 IPC_STRUCT_TRAITS_END()
297 293
298 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ 294 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
OLDNEW
« no previous file with comments | « no previous file | content/public/renderer/window_features_converter.cc » ('j') | third_party/WebKit/Source/core/page/Page.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698