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

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

Issue 1410423003: [SafeBrowsing] Conditionalize unverified download blocking on whitelist. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@flash-download-block
Patch Set: Created 5 years, 1 month 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 // 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/memory/shared_memory.h" 8 #include "base/memory/shared_memory.h"
9 #include "base/process/process.h" 9 #include "base/process/process.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 211
212 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserParams) 212 IPC_STRUCT_TRAITS_BEGIN(content::FileChooserParams)
213 IPC_STRUCT_TRAITS_MEMBER(mode) 213 IPC_STRUCT_TRAITS_MEMBER(mode)
214 IPC_STRUCT_TRAITS_MEMBER(title) 214 IPC_STRUCT_TRAITS_MEMBER(title)
215 IPC_STRUCT_TRAITS_MEMBER(default_file_name) 215 IPC_STRUCT_TRAITS_MEMBER(default_file_name)
216 IPC_STRUCT_TRAITS_MEMBER(accept_types) 216 IPC_STRUCT_TRAITS_MEMBER(accept_types)
217 IPC_STRUCT_TRAITS_MEMBER(need_local_path) 217 IPC_STRUCT_TRAITS_MEMBER(need_local_path)
218 #if defined(OS_ANDROID) 218 #if defined(OS_ANDROID)
219 IPC_STRUCT_TRAITS_MEMBER(capture) 219 IPC_STRUCT_TRAITS_MEMBER(capture)
220 #endif 220 #endif
221 IPC_STRUCT_TRAITS_MEMBER(requestor)
221 IPC_STRUCT_TRAITS_END() 222 IPC_STRUCT_TRAITS_END()
222 223
223 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences) 224 IPC_STRUCT_TRAITS_BEGIN(content::RendererPreferences)
224 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops) 225 IPC_STRUCT_TRAITS_MEMBER(can_accept_load_drops)
225 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text) 226 IPC_STRUCT_TRAITS_MEMBER(should_antialias_text)
226 IPC_STRUCT_TRAITS_MEMBER(hinting) 227 IPC_STRUCT_TRAITS_MEMBER(hinting)
227 IPC_STRUCT_TRAITS_MEMBER(use_autohinter) 228 IPC_STRUCT_TRAITS_MEMBER(use_autohinter)
228 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps) 229 IPC_STRUCT_TRAITS_MEMBER(use_bitmaps)
229 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering) 230 IPC_STRUCT_TRAITS_MEMBER(subpixel_rendering)
230 IPC_STRUCT_TRAITS_MEMBER(use_subpixel_positioning) 231 IPC_STRUCT_TRAITS_MEMBER(use_subpixel_positioning)
(...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after
1397 // Instructs the browser to start plugin IME. 1398 // Instructs the browser to start plugin IME.
1398 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme) 1399 IPC_MESSAGE_ROUTED0(ViewHostMsg_StartPluginIme)
1399 1400
1400 // Receives content of a web page as plain text. 1401 // Receives content of a web page as plain text.
1401 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string); 1402 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string);
1402 #endif 1403 #endif
1403 1404
1404 // Adding a new message? Stick to the sort order above: first platform 1405 // Adding a new message? Stick to the sort order above: first platform
1405 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1406 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1406 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1407 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « chrome/test/ppapi/ppapi_filechooser_browsertest.cc ('k') | content/public/common/file_chooser_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698