diff options
author | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-09 15:21:53 +0000 |
---|---|---|
committer | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-09 15:21:53 +0000 |
commit | 6f001a6cf0c8e74345ebab5c2ddb65babe892cc2 (patch) | |
tree | fcb5d37e8c9a834a1ebd87eb7fde8c2b2750caa9 /chrome/common/autofill_messages.h | |
parent | 6f7f89a4d8651e9916640100106b8dfe95d03c71 (diff) | |
download | chromium_src-6f001a6cf0c8e74345ebab5c2ddb65babe892cc2.zip chromium_src-6f001a6cf0c8e74345ebab5c2ddb65babe892cc2.tar.gz chromium_src-6f001a6cf0c8e74345ebab5c2ddb65babe892cc2.tar.bz2 |
Adding Mouse Support for new GTK Autofill
Adds the ability use the mouse to select an Autofill option and see the preview of an option.
BUG=51644
TEST=
Review URL: http://codereview.chromium.org/9235072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121234 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/autofill_messages.h')
-rw-r--r-- | chrome/common/autofill_messages.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/chrome/common/autofill_messages.h b/chrome/common/autofill_messages.h index 95adf65..d7a4b05 100644 --- a/chrome/common/autofill_messages.h +++ b/chrome/common/autofill_messages.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -95,6 +95,22 @@ IPC_MESSAGE_ROUTED1( IPC_MESSAGE_ROUTED1(AutofillMsg_SelectAutofillSuggestionAtIndex, int /* listIndex */) +// Tells the renderer that the next form will be filled for real. +IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionFill) + +// Clears the currently displayed Autofill results. +IPC_MESSAGE_ROUTED0(AutofillMsg_ClearForm) + +// Tells the renderer that the next form will be filled as a preview. +IPC_MESSAGE_ROUTED0(AutofillMsg_SetAutofillActionPreview) + +// Tells the renderer that the Autofill previewed form should be cleared. +IPC_MESSAGE_ROUTED0(AutofillMsg_ClearPreviewedForm) + +// Sets the currently selected nodes value. +IPC_MESSAGE_ROUTED1(AutofillMsg_SetNodeText, + string16) + // Autofill messages sent from the renderer to the browser. // Notification that forms have been seen that are candidates for |