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

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

Issue 905683002: Script streaming: remove config. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 26 matching lines...) Expand all
37 content::SECURITY_STYLE_LAST) 37 content::SECURITY_STYLE_LAST)
38 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebReferrerPolicy, 38 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebReferrerPolicy,
39 blink::WebReferrerPolicyLast) 39 blink::WebReferrerPolicyLast)
40 IPC_ENUM_TRAITS_MAX_VALUE(content::EditingBehavior, 40 IPC_ENUM_TRAITS_MAX_VALUE(content::EditingBehavior,
41 content::EDITING_BEHAVIOR_LAST) 41 content::EDITING_BEHAVIOR_LAST)
42 IPC_ENUM_TRAITS_MAX_VALUE(WindowOpenDisposition, 42 IPC_ENUM_TRAITS_MAX_VALUE(WindowOpenDisposition,
43 WINDOW_OPEN_DISPOSITION_LAST) 43 WINDOW_OPEN_DISPOSITION_LAST)
44 IPC_ENUM_TRAITS_MAX_VALUE(net::RequestPriority, net::MAXIMUM_PRIORITY) 44 IPC_ENUM_TRAITS_MAX_VALUE(net::RequestPriority, net::MAXIMUM_PRIORITY)
45 IPC_ENUM_TRAITS_MAX_VALUE(content::V8CacheOptions, 45 IPC_ENUM_TRAITS_MAX_VALUE(content::V8CacheOptions,
46 content::V8_CACHE_OPTIONS_LAST) 46 content::V8_CACHE_OPTIONS_LAST)
47 IPC_ENUM_TRAITS_MAX_VALUE(content::V8ScriptStreamingMode,
48 content::V8_SCRIPT_STREAMING_MODE_LAST)
49 IPC_ENUM_TRAITS_MIN_MAX_VALUE(ui::PointerType, 47 IPC_ENUM_TRAITS_MIN_MAX_VALUE(ui::PointerType,
50 ui::POINTER_TYPE_FIRST, 48 ui::POINTER_TYPE_FIRST,
51 ui::POINTER_TYPE_LAST) 49 ui::POINTER_TYPE_LAST)
52 IPC_ENUM_TRAITS_MIN_MAX_VALUE(ui::HoverType, 50 IPC_ENUM_TRAITS_MIN_MAX_VALUE(ui::HoverType,
53 ui::HOVER_TYPE_FIRST, 51 ui::HOVER_TYPE_FIRST,
54 ui::HOVER_TYPE_LAST) 52 ui::HOVER_TYPE_LAST)
55 53
56 IPC_STRUCT_TRAITS_BEGIN(blink::WebPoint) 54 IPC_STRUCT_TRAITS_BEGIN(blink::WebPoint)
57 IPC_STRUCT_TRAITS_MEMBER(x) 55 IPC_STRUCT_TRAITS_MEMBER(x)
58 IPC_STRUCT_TRAITS_MEMBER(y) 56 IPC_STRUCT_TRAITS_MEMBER(y)
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 IPC_STRUCT_TRAITS_MEMBER(supports_multiple_windows) 185 IPC_STRUCT_TRAITS_MEMBER(supports_multiple_windows)
188 IPC_STRUCT_TRAITS_MEMBER(viewport_enabled) 186 IPC_STRUCT_TRAITS_MEMBER(viewport_enabled)
189 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_enabled) 187 IPC_STRUCT_TRAITS_MEMBER(viewport_meta_enabled)
190 IPC_STRUCT_TRAITS_MEMBER(main_frame_resizes_are_orientation_changes) 188 IPC_STRUCT_TRAITS_MEMBER(main_frame_resizes_are_orientation_changes)
191 IPC_STRUCT_TRAITS_MEMBER(initialize_at_minimum_page_scale) 189 IPC_STRUCT_TRAITS_MEMBER(initialize_at_minimum_page_scale)
192 IPC_STRUCT_TRAITS_MEMBER(smart_insert_delete_enabled) 190 IPC_STRUCT_TRAITS_MEMBER(smart_insert_delete_enabled)
193 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled) 191 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled)
194 IPC_STRUCT_TRAITS_MEMBER(navigate_on_drag_drop) 192 IPC_STRUCT_TRAITS_MEMBER(navigate_on_drag_drop)
195 IPC_STRUCT_TRAITS_MEMBER(spatial_navigation_enabled) 193 IPC_STRUCT_TRAITS_MEMBER(spatial_navigation_enabled)
196 IPC_STRUCT_TRAITS_MEMBER(v8_cache_options) 194 IPC_STRUCT_TRAITS_MEMBER(v8_cache_options)
197 IPC_STRUCT_TRAITS_MEMBER(v8_script_streaming_enabled)
198 IPC_STRUCT_TRAITS_MEMBER(v8_script_streaming_mode)
199 IPC_STRUCT_TRAITS_MEMBER(slimming_paint_enabled) 195 IPC_STRUCT_TRAITS_MEMBER(slimming_paint_enabled)
200 IPC_STRUCT_TRAITS_MEMBER(pepper_accelerated_video_decode_enabled) 196 IPC_STRUCT_TRAITS_MEMBER(pepper_accelerated_video_decode_enabled)
201 #if defined(OS_ANDROID) 197 #if defined(OS_ANDROID)
202 IPC_STRUCT_TRAITS_MEMBER(text_autosizing_enabled) 198 IPC_STRUCT_TRAITS_MEMBER(text_autosizing_enabled)
203 IPC_STRUCT_TRAITS_MEMBER(font_scale_factor) 199 IPC_STRUCT_TRAITS_MEMBER(font_scale_factor)
204 IPC_STRUCT_TRAITS_MEMBER(device_scale_adjustment) 200 IPC_STRUCT_TRAITS_MEMBER(device_scale_adjustment)
205 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) 201 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom)
206 IPC_STRUCT_TRAITS_MEMBER(fullscreen_supported) 202 IPC_STRUCT_TRAITS_MEMBER(fullscreen_supported)
207 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled) 203 IPC_STRUCT_TRAITS_MEMBER(double_tap_to_zoom_enabled)
208 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback) 204 IPC_STRUCT_TRAITS_MEMBER(user_gesture_required_for_media_playback)
(...skipping 28 matching lines...) Expand all
237 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible) 233 IPC_STRUCT_TRAITS_MEMBER(statusBarVisible)
238 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible) 234 IPC_STRUCT_TRAITS_MEMBER(toolBarVisible)
239 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible) 235 IPC_STRUCT_TRAITS_MEMBER(locationBarVisible)
240 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible) 236 IPC_STRUCT_TRAITS_MEMBER(scrollbarsVisible)
241 IPC_STRUCT_TRAITS_MEMBER(resizable) 237 IPC_STRUCT_TRAITS_MEMBER(resizable)
242 IPC_STRUCT_TRAITS_MEMBER(fullscreen) 238 IPC_STRUCT_TRAITS_MEMBER(fullscreen)
243 IPC_STRUCT_TRAITS_MEMBER(dialog) 239 IPC_STRUCT_TRAITS_MEMBER(dialog)
244 IPC_STRUCT_TRAITS_END() 240 IPC_STRUCT_TRAITS_END()
245 241
246 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_ 242 #endif // CONTENT_PUBLIC_COMMON_COMMON_PARAM_TRAITS_MACROS_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host_impl.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698