Chromium Code Reviews

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

Issue 819293002: Set whether context menu appears on mouse up from WebPreferences (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix merge issue in earlier patch Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « no previous file | content/public/common/web_preferences.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) 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 92 matching lines...)
103 103
104 IPC_STRUCT_TRAITS_BEGIN(content::WebPreferences) 104 IPC_STRUCT_TRAITS_BEGIN(content::WebPreferences)
105 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) 105 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map)
106 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) 106 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map)
107 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) 107 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map)
108 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) 108 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map)
109 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) 109 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map)
110 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) 110 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map)
111 IPC_STRUCT_TRAITS_MEMBER(default_font_size) 111 IPC_STRUCT_TRAITS_MEMBER(default_font_size)
112 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) 112 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size)
113 IPC_STRUCT_TRAITS_MEMBER(context_menu_on_mouse_up)
nasko 2015/02/24 16:26:03 Move this to be in the same order as web_preferenc
113 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) 114 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size)
114 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) 115 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size)
115 IPC_STRUCT_TRAITS_MEMBER(default_encoding) 116 IPC_STRUCT_TRAITS_MEMBER(default_encoding)
116 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) 117 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled)
117 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) 118 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled)
118 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) 119 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically)
119 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) 120 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically)
120 IPC_STRUCT_TRAITS_MEMBER(images_enabled) 121 IPC_STRUCT_TRAITS_MEMBER(images_enabled)
121 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) 122 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled)
122 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) 123 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled)
(...skipping 117 matching lines...)
240 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) 241 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible)
241 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) 242 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible)
242 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) 243 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible)
243 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) 244 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible)
244 IPC_STRUCT_TRAITS_MEMBER(resizable) 245 IPC_STRUCT_TRAITS_MEMBER(resizable)
245 IPC_STRUCT_TRAITS_MEMBER(fullscreen) 246 IPC_STRUCT_TRAITS_MEMBER(fullscreen)
246 IPC_STRUCT_TRAITS_MEMBER(dialog) 247 IPC_STRUCT_TRAITS_MEMBER(dialog)
247 IPC_STRUCT_TRAITS_END() 248 IPC_STRUCT_TRAITS_END()
248 249
249 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ 250 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
OLDNEW
« no previous file with comments | « no previous file | content/public/common/web_preferences.h » ('j') | no next file with comments »

Powered by Google App Engine