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

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

Issue 826713002: [ChromeOS] Show autofill popup after keyboard (if any) is shown. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable autofill popup waiting for keyboard when keyboard has been disabled. Created 5 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/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 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 IPC_MESSAGE_ROUTED1(ViewMsg_DisableAutoResize, 813 IPC_MESSAGE_ROUTED1(ViewMsg_DisableAutoResize,
814 gfx::Size /* new_size */) 814 gfx::Size /* new_size */)
815 815
816 // Changes the text direction of the currently selected input field (if any). 816 // Changes the text direction of the currently selected input field (if any).
817 IPC_MESSAGE_ROUTED1(ViewMsg_SetTextDirection, 817 IPC_MESSAGE_ROUTED1(ViewMsg_SetTextDirection,
818 blink::WebTextDirection /* direction */) 818 blink::WebTextDirection /* direction */)
819 819
820 // Tells the renderer to clear the focused element (if any). 820 // Tells the renderer to clear the focused element (if any).
821 IPC_MESSAGE_ROUTED0(ViewMsg_ClearFocusedElement) 821 IPC_MESSAGE_ROUTED0(ViewMsg_ClearFocusedElement)
822 822
823 // Tells the renderer that the browser has completed the asynchronous focus
824 // change operations (e.g. animations) in response to focus change.
825 IPC_MESSAGE_ROUTED0(ViewMsg_FocusChangeComplete)
826
823 // Make the RenderView background transparent or opaque. 827 // Make the RenderView background transparent or opaque.
824 IPC_MESSAGE_ROUTED1(ViewMsg_SetBackgroundOpaque, bool /* opaque */) 828 IPC_MESSAGE_ROUTED1(ViewMsg_SetBackgroundOpaque, bool /* opaque */)
825 829
826 // Used to tell the renderer not to add scrollbars with height and 830 // Used to tell the renderer not to add scrollbars with height and
827 // width below a threshold. 831 // width below a threshold.
828 IPC_MESSAGE_ROUTED1(ViewMsg_DisableScrollbarsForSmallWindows, 832 IPC_MESSAGE_ROUTED1(ViewMsg_DisableScrollbarsForSmallWindows,
829 gfx::Size /* disable_scrollbar_size_limit */) 833 gfx::Size /* disable_scrollbar_size_limit */)
830 834
831 // Activate/deactivate the RenderView (i.e., set its controls' tint 835 // Activate/deactivate the RenderView (i.e., set its controls' tint
832 // accordingly, etc.). 836 // accordingly, etc.).
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
1648 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters 1652 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
1649 // for details. 1653 // for details.
1650 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, 1654 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
1651 LOGFONT /* font_data */, 1655 LOGFONT /* font_data */,
1652 base::string16 /* characters */) 1656 base::string16 /* characters */)
1653 #endif 1657 #endif
1654 1658
1655 // Adding a new message? Stick to the sort order above: first platform 1659 // Adding a new message? Stick to the sort order above: first platform
1656 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1660 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1657 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1661 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view_aura.cc ('k') | content/renderer/render_widget.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698