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

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

Issue 43503002: Remove fling curve profiles from renderer preferences assuming that be turn on Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | 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/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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) 259 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests)
260 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) 260 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests)
261 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) 261 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval)
262 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) 262 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors)
263 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) 263 IPC_STRUCT_TRAITS_MEMBER(enable_referrers)
264 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) 264 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track)
265 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) 265 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level)
266 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) 266 IPC_STRUCT_TRAITS_MEMBER(user_agent_override)
267 IPC_STRUCT_TRAITS_MEMBER(accept_languages) 267 IPC_STRUCT_TRAITS_MEMBER(accept_languages)
268 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) 268 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes)
269 IPC_STRUCT_TRAITS_MEMBER(touchpad_fling_profile)
270 IPC_STRUCT_TRAITS_MEMBER(touchscreen_fling_profile)
271 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy) 269 IPC_STRUCT_TRAITS_MEMBER(tap_multiple_targets_strategy)
272 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page) 270 IPC_STRUCT_TRAITS_MEMBER(disable_client_blocked_error_page)
273 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed) 271 IPC_STRUCT_TRAITS_MEMBER(plugin_fullscreen_allowed)
274 IPC_STRUCT_TRAITS_END() 272 IPC_STRUCT_TRAITS_END()
275 273
276 IPC_STRUCT_TRAITS_BEGIN(content::CookieData) 274 IPC_STRUCT_TRAITS_BEGIN(content::CookieData)
277 IPC_STRUCT_TRAITS_MEMBER(name) 275 IPC_STRUCT_TRAITS_MEMBER(name)
278 IPC_STRUCT_TRAITS_MEMBER(value) 276 IPC_STRUCT_TRAITS_MEMBER(value)
279 IPC_STRUCT_TRAITS_MEMBER(domain) 277 IPC_STRUCT_TRAITS_MEMBER(domain)
280 IPC_STRUCT_TRAITS_MEMBER(path) 278 IPC_STRUCT_TRAITS_MEMBER(path)
(...skipping 2080 matching lines...) Expand 10 before | Expand all | Expand 10 after
2361 // synchronously (see crbug.com/120597). This IPC message sends the character 2359 // synchronously (see crbug.com/120597). This IPC message sends the character
2362 // bounds after every composition change to always have correct bound info. 2360 // bounds after every composition change to always have correct bound info.
2363 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, 2361 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged,
2364 gfx::Range /* composition range */, 2362 gfx::Range /* composition range */,
2365 std::vector<gfx::Rect> /* character bounds */) 2363 std::vector<gfx::Rect> /* character bounds */)
2366 #endif 2364 #endif
2367 2365
2368 // Adding a new message? Stick to the sort order above: first platform 2366 // Adding a new message? Stick to the sort order above: first platform
2369 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 2367 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
2370 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 2368 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/browser/renderer_host/input/fling/fling_curve_impl.cc ('k') | content/public/common/renderer_preferences.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698