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

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

Issue 2596193002: Clean up names and remove unnecessary parameter (Closed)
Patch Set: rebase Created 3 years, 11 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 // 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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 IPC_STRUCT_TRAITS_MEMBER(type) 279 IPC_STRUCT_TRAITS_MEMBER(type)
280 IPC_STRUCT_TRAITS_MEMBER(mode) 280 IPC_STRUCT_TRAITS_MEMBER(mode)
281 IPC_STRUCT_TRAITS_MEMBER(flags) 281 IPC_STRUCT_TRAITS_MEMBER(flags)
282 IPC_STRUCT_TRAITS_MEMBER(value) 282 IPC_STRUCT_TRAITS_MEMBER(value)
283 IPC_STRUCT_TRAITS_MEMBER(selection_start) 283 IPC_STRUCT_TRAITS_MEMBER(selection_start)
284 IPC_STRUCT_TRAITS_MEMBER(selection_end) 284 IPC_STRUCT_TRAITS_MEMBER(selection_end)
285 IPC_STRUCT_TRAITS_MEMBER(composition_start) 285 IPC_STRUCT_TRAITS_MEMBER(composition_start)
286 IPC_STRUCT_TRAITS_MEMBER(composition_end) 286 IPC_STRUCT_TRAITS_MEMBER(composition_end)
287 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline) 287 IPC_STRUCT_TRAITS_MEMBER(can_compose_inline)
288 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed) 288 IPC_STRUCT_TRAITS_MEMBER(show_ime_if_needed)
289 IPC_STRUCT_TRAITS_MEMBER(is_non_ime_change) 289 IPC_STRUCT_TRAITS_MEMBER(reply_to_request)
290 IPC_STRUCT_TRAITS_END() 290 IPC_STRUCT_TRAITS_END()
291 291
292 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params) 292 IPC_STRUCT_BEGIN(ViewHostMsg_CreateWorker_Params)
293 // URL for the worker script. 293 // URL for the worker script.
294 IPC_STRUCT_MEMBER(GURL, url) 294 IPC_STRUCT_MEMBER(GURL, url)
295 295
296 // Name for a SharedWorker, otherwise empty string. 296 // Name for a SharedWorker, otherwise empty string.
297 IPC_STRUCT_MEMBER(base::string16, name) 297 IPC_STRUCT_MEMBER(base::string16, name)
298 298
299 // Security policy used in the worker. 299 // Security policy used in the worker.
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 int /* y */) 895 int /* y */)
896 896
897 #elif defined(OS_MACOSX) 897 #elif defined(OS_MACOSX)
898 // Receives content of a web page as plain text. 898 // Receives content of a web page as plain text.
899 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string) 899 IPC_MESSAGE_ROUTED1(ViewMsg_GetRenderedTextCompleted, std::string)
900 #endif 900 #endif
901 901
902 // Adding a new message? Stick to the sort order above: first platform 902 // Adding a new message? Stick to the sort order above: first platform
903 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 903 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
904 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 904 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/common/text_input_state.cc ('k') | content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698