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

Side by Side Diff: content/common/view_messages.h

Issue 10387074: Only disallow top-level navigations in platform apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add blob: URLs, use WebSecurityOrigin Created 8 years, 7 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 | Annotate | Revision Log
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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) 292 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering)
293 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) 293 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color)
294 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) 294 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color)
295 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) 295 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color)
296 IPC_STRUCT_TRAITS_MEMBER(track_color) 296 IPC_STRUCT_TRAITS_MEMBER(track_color)
297 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) 297 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color)
298 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) 298 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color)
299 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) 299 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color)
300 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) 300 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color)
301 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests) 301 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests)
302 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_requests) 302 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_or_non_local_requests)
303 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) 303 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval)
304 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) 304 IPC_STRUCT_TRAITS_MEMBER(enable_referrers)
305 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) 305 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level)
306 IPC_STRUCT_TRAITS_END() 306 IPC_STRUCT_TRAITS_END()
307 307
308 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus) 308 IPC_STRUCT_TRAITS_BEGIN(content::SSLStatus)
309 IPC_STRUCT_TRAITS_MEMBER(security_style) 309 IPC_STRUCT_TRAITS_MEMBER(security_style)
310 IPC_STRUCT_TRAITS_MEMBER(cert_id) 310 IPC_STRUCT_TRAITS_MEMBER(cert_id)
311 IPC_STRUCT_TRAITS_MEMBER(cert_status) 311 IPC_STRUCT_TRAITS_MEMBER(cert_status)
312 IPC_STRUCT_TRAITS_MEMBER(security_bits) 312 IPC_STRUCT_TRAITS_MEMBER(security_bits)
(...skipping 1744 matching lines...) Expand 10 before | Expand all | Expand 10 after
2057 // (according to the value of is_hung). The browser can give the user the 2057 // (according to the value of is_hung). The browser can give the user the
2058 // option of killing the plugin. 2058 // option of killing the plugin.
2059 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2059 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2060 int /* plugin_child_id */, 2060 int /* plugin_child_id */,
2061 FilePath /* path */, 2061 FilePath /* path */,
2062 bool /* is_hung */) 2062 bool /* is_hung */)
2063 2063
2064 // Screen was rotated. Dispatched to the onorientationchange javascript API. 2064 // Screen was rotated. Dispatched to the onorientationchange javascript API.
2065 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, 2065 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent,
2066 int /* orientation */) 2066 int /* orientation */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698