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

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

Issue 6773006: Add enableReferrers and enableHyperlinkAuditing to contentSettings.misc API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: git try Created 9 years, 8 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) 211 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color)
212 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) 212 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color)
213 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) 213 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color)
214 IPC_STRUCT_TRAITS_MEMBER(track_color) 214 IPC_STRUCT_TRAITS_MEMBER(track_color)
215 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) 215 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color)
216 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) 216 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color)
217 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) 217 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color)
218 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) 218 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color)
219 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests) 219 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests)
220 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) 220 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval)
221 IPC_STRUCT_TRAITS_MEMBER(enable_referrers)
221 IPC_STRUCT_TRAITS_END() 222 IPC_STRUCT_TRAITS_END()
222 223
223 IPC_STRUCT_TRAITS_BEGIN(ViewMsg_StopFinding_Params) 224 IPC_STRUCT_TRAITS_BEGIN(ViewMsg_StopFinding_Params)
224 IPC_STRUCT_TRAITS_MEMBER(action) 225 IPC_STRUCT_TRAITS_MEMBER(action)
225 IPC_STRUCT_TRAITS_END() 226 IPC_STRUCT_TRAITS_END()
226 227
227 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebCompositionUnderline) 228 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebCompositionUnderline)
228 IPC_STRUCT_TRAITS_MEMBER(startOffset) 229 IPC_STRUCT_TRAITS_MEMBER(startOffset)
229 IPC_STRUCT_TRAITS_MEMBER(endOffset) 230 IPC_STRUCT_TRAITS_MEMBER(endOffset)
230 IPC_STRUCT_TRAITS_MEMBER(color) 231 IPC_STRUCT_TRAITS_MEMBER(color)
(...skipping 1636 matching lines...) Expand 10 before | Expand all | Expand 10 after
1867 // enable or disable spdy. Used for debugging/testing/benchmarking. 1868 // enable or disable spdy. Used for debugging/testing/benchmarking.
1868 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, 1869 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy,
1869 bool /* enable */) 1870 bool /* enable */)
1870 1871
1871 // Message sent from the renderer to the browser to request that the browser 1872 // Message sent from the renderer to the browser to request that the browser
1872 // cache |data| associated with |url|. 1873 // cache |data| associated with |url|.
1873 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, 1874 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata,
1874 GURL /* url */, 1875 GURL /* url */,
1875 double /* expected_response_time */, 1876 double /* expected_response_time */,
1876 std::vector<char> /* data */) 1877 std::vector<char> /* data */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698