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

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

Issue 715733002: [Android] Show autofill popup after animation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Hide popup when resizing the viewport resulted in movement of the focused element. Created 6 years 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 792 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 IPC_MESSAGE_ROUTED1(ViewMsg_DisableAutoResize, 803 IPC_MESSAGE_ROUTED1(ViewMsg_DisableAutoResize,
804 gfx::Size /* new_size */) 804 gfx::Size /* new_size */)
805 805
806 // Changes the text direction of the currently selected input field (if any). 806 // Changes the text direction of the currently selected input field (if any).
807 IPC_MESSAGE_ROUTED1(ViewMsg_SetTextDirection, 807 IPC_MESSAGE_ROUTED1(ViewMsg_SetTextDirection,
808 blink::WebTextDirection /* direction */) 808 blink::WebTextDirection /* direction */)
809 809
810 // Tells the renderer to clear the focused element (if any). 810 // Tells the renderer to clear the focused element (if any).
811 IPC_MESSAGE_ROUTED0(ViewMsg_ClearFocusedElement) 811 IPC_MESSAGE_ROUTED0(ViewMsg_ClearFocusedElement)
812 812
813 // Tells the renderer that the browser will not be performing asynchronous focus
814 // change operations (e.g. animations) in response to focus change.
815 IPC_MESSAGE_ROUTED0(ViewMsg_FocusChangeComplete)
816
813 // Make the RenderView background transparent or opaque. 817 // Make the RenderView background transparent or opaque.
814 IPC_MESSAGE_ROUTED1(ViewMsg_SetBackgroundOpaque, bool /* opaque */) 818 IPC_MESSAGE_ROUTED1(ViewMsg_SetBackgroundOpaque, bool /* opaque */)
815 819
816 // Used to tell the renderer not to add scrollbars with height and 820 // Used to tell the renderer not to add scrollbars with height and
817 // width below a threshold. 821 // width below a threshold.
818 IPC_MESSAGE_ROUTED1(ViewMsg_DisableScrollbarsForSmallWindows, 822 IPC_MESSAGE_ROUTED1(ViewMsg_DisableScrollbarsForSmallWindows,
819 gfx::Size /* disable_scrollbar_size_limit */) 823 gfx::Size /* disable_scrollbar_size_limit */)
820 824
821 // Activate/deactivate the RenderView (i.e., set its controls' tint 825 // Activate/deactivate the RenderView (i.e., set its controls' tint
822 // accordingly, etc.). 826 // accordingly, etc.).
(...skipping 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
1636 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters 1640 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
1637 // for details. 1641 // for details.
1638 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, 1642 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
1639 LOGFONT /* font_data */, 1643 LOGFONT /* font_data */,
1640 base::string16 /* characters */) 1644 base::string16 /* characters */)
1641 #endif 1645 #endif
1642 1646
1643 // Adding a new message? Stick to the sort order above: first platform 1647 // Adding a new message? Stick to the sort order above: first platform
1644 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform 1648 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform
1645 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. 1649 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698