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

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

Issue 11783088: Split Date/Time picker values from IME processing since date/time related form values have been com… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved header file out of public, applied renaming suggestions. Created 7 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 "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 1966 matching lines...) Expand 10 before | Expand all | Expand 10 after
1977 // ViewMsg_EnumerateDirectoryResponse message. 1977 // ViewMsg_EnumerateDirectoryResponse message.
1978 IPC_MESSAGE_ROUTED2(ViewHostMsg_EnumerateDirectory, 1978 IPC_MESSAGE_ROUTED2(ViewHostMsg_EnumerateDirectory,
1979 int /* request_id */, 1979 int /* request_id */,
1980 FilePath /* file_path */) 1980 FilePath /* file_path */)
1981 1981
1982 // Tells the browser to move the focus to the next (previous if reverse is 1982 // Tells the browser to move the focus to the next (previous if reverse is
1983 // true) focusable element. 1983 // true) focusable element.
1984 IPC_MESSAGE_ROUTED1(ViewHostMsg_TakeFocus, 1984 IPC_MESSAGE_ROUTED1(ViewHostMsg_TakeFocus,
1985 bool /* reverse */) 1985 bool /* reverse */)
1986 1986
1987 // Required for opening a date/time dialog
1988 IPC_MESSAGE_ROUTED2(ViewHostMsg_OpenDateTimeDialog,
1989 int /* dialog type */,
1990 std::string /* initial value */)
1991
1987 // Required for updating text input state. 1992 // Required for updating text input state.
1988 IPC_MESSAGE_ROUTED1(ViewHostMsg_TextInputStateChanged, 1993 IPC_MESSAGE_ROUTED1(ViewHostMsg_TextInputStateChanged,
1989 ViewHostMsg_TextInputState_Params /* input state params */) 1994 ViewHostMsg_TextInputState_Params /* input state params */)
1990 1995
1991 // Message sent when the IME text composition range changes. 1996 // Message sent when the IME text composition range changes.
1992 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged, 1997 IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeCompositionRangeChanged,
1993 ui::Range /* composition range */, 1998 ui::Range /* composition range */,
1994 std::vector<gfx::Rect> /* character bounds */) 1999 std::vector<gfx::Rect> /* character bounds */)
1995 2000
1996 // Required for cancelling an ongoing input method composition. 2001 // Required for cancelling an ongoing input method composition.
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
2369 int /* arb_robustness_status_code */) 2374 int /* arb_robustness_status_code */)
2370 2375
2371 #if defined(OS_WIN) 2376 #if defined(OS_WIN)
2372 // Request that the given font characters be loaded by the browser so it's 2377 // Request that the given font characters be loaded by the browser so it's
2373 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters 2378 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
2374 // for details. 2379 // for details.
2375 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, 2380 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
2376 LOGFONT /* font_data */, 2381 LOGFONT /* font_data */,
2377 string16 /* characters */) 2382 string16 /* characters */)
2378 #endif 2383 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698