Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 "base/string16.h" | 10 #include "base/string16.h" |
| (...skipping 1965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1976 // ViewMsg_EnumerateDirectoryResponse message. | 1976 // ViewMsg_EnumerateDirectoryResponse message. |
| 1977 IPC_MESSAGE_ROUTED2(ViewHostMsg_EnumerateDirectory, | 1977 IPC_MESSAGE_ROUTED2(ViewHostMsg_EnumerateDirectory, |
| 1978 int /* request_id */, | 1978 int /* request_id */, |
| 1979 FilePath /* file_path */) | 1979 FilePath /* file_path */) |
| 1980 | 1980 |
| 1981 // Tells the browser to move the focus to the next (previous if reverse is | 1981 // Tells the browser to move the focus to the next (previous if reverse is |
| 1982 // true) focusable element. | 1982 // true) focusable element. |
| 1983 IPC_MESSAGE_ROUTED1(ViewHostMsg_TakeFocus, | 1983 IPC_MESSAGE_ROUTED1(ViewHostMsg_TakeFocus, |
| 1984 bool /* reverse */) | 1984 bool /* reverse */) |
| 1985 | 1985 |
| 1986 // Required for opening a date/time dialog | |
| 1987 IPC_MESSAGE_ROUTED2(ViewHostMsg_OpenDateTimeDialog, | |
| 1988 int, /* dialog type */ | |
|
bulach
2013/01/10 15:58:35
nit: I guess it fits aligned with the parens? also
Miguel Garcia
2013/01/11 14:59:37
Done.
| |
| 1989 std::string /* initial value */) | |
| 1990 | |
| 1986 // Required for updating text input state. | 1991 // Required for updating text input state. |
| 1987 IPC_MESSAGE_ROUTED1(ViewHostMsg_TextInputStateChanged, | 1992 IPC_MESSAGE_ROUTED1(ViewHostMsg_TextInputStateChanged, |
| 1988 ViewHostMsg_TextInputState_Params /* input state params */) | 1993 ViewHostMsg_TextInputState_Params /* input state params */) |
| 1989 | 1994 |
| 1990 // Message sent when the IME text composition range changes. | 1995 // Message sent when the IME text composition range changes. |
| 1991 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, | 1996 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, |
| 1992 ui::Range /* composition range */, | 1997 ui::Range /* composition range */, |
| 1993 std::vector<gfx::Rect> /* character bounds */) | 1998 std::vector<gfx::Rect> /* character bounds */) |
| 1994 | 1999 |
| 1995 // Required for cancelling an ongoing input method composition. | 2000 // Required for cancelling an ongoing input method composition. |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2364 int /* arb_robustness_status_code */) | 2369 int /* arb_robustness_status_code */) |
| 2365 | 2370 |
| 2366 #if defined(OS_WIN) | 2371 #if defined(OS_WIN) |
| 2367 // Request that the given font characters be loaded by the browser so it's | 2372 // Request that the given font characters be loaded by the browser so it's |
| 2368 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 2373 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 2369 // for details. | 2374 // for details. |
| 2370 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 2375 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 2371 LOGFONT /* font_data */, | 2376 LOGFONT /* font_data */, |
| 2372 string16 /* characters */) | 2377 string16 /* characters */) |
| 2373 #endif | 2378 #endif |
| OLD | NEW |