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

Side by Side Diff: components/autofill/content/common/autofill_messages.h

Issue 796493004: Remove FrameDetached and FrameWillClose listeners from AutofillAgent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix init order 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // Multiply-included message file, hence no include guard. 5 // Multiply-included message file, hence no include guard.
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData) 265 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData)
266 266
267 // Sent immediately after the renderer receives a ping IPC. 267 // Sent immediately after the renderer receives a ping IPC.
268 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck) 268 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck)
269 269
270 // Sent when a form is filled with Autofill suggestions. 270 // Sent when a form is filled with Autofill suggestions.
271 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData, 271 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData,
272 base::TimeTicks /* timestamp */) 272 base::TimeTicks /* timestamp */)
273 273
274 // Sent when a form receives a request to do interactive autocomplete. 274 // Sent when a form receives a request to do interactive autocomplete.
275 IPC_MESSAGE_ROUTED2(AutofillHostMsg_RequestAutocomplete, 275 IPC_MESSAGE_ROUTED1(AutofillHostMsg_RequestAutocomplete,
276 autofill::FormData /* form_data */, 276 autofill::FormData /* form_data */)
277 GURL /* frame_url */)
278
279 // Sent when interactive autocomplete is cancelled (e.g. because the invoking
280 // frame was navigated to a different URL).
281 IPC_MESSAGE_ROUTED0(AutofillHostMsg_CancelRequestAutocomplete)
282 277
283 // Send when a text field is done editing. 278 // Send when a text field is done editing.
284 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) 279 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing)
285 280
286 // Instructs the browser to hide the Autofill popup if it is open. 281 // Instructs the browser to hide the Autofill popup if it is open.
287 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HidePopup) 282 IPC_MESSAGE_ROUTED0(AutofillHostMsg_HidePopup)
288 283
289 // Instructs the browser to show the password generation popup at the 284 // Instructs the browser to show the password generation popup at the
290 // specified location. This location should be specified in the renderers 285 // specified location. This location should be specified in the renderers
291 // coordinate system. Form is the form associated with the password field. 286 // coordinate system. Form is the form associated with the password field.
(...skipping 20 matching lines...) Expand all
312 int /* key */, 307 int /* key */,
313 base::i18n::TextDirection /* text_direction */, 308 base::i18n::TextDirection /* text_direction */,
314 base::string16 /* username typed by user */, 309 base::string16 /* username typed by user */,
315 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */, 310 int /* options bitmask of autofill::ShowPasswordSuggestionsOptions */,
316 gfx::RectF /* input field bounds, window-relative */) 311 gfx::RectF /* input field bounds, window-relative */)
317 312
318 // Inform browser of data list values for the curent field. 313 // Inform browser of data list values for the curent field.
319 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 314 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
320 std::vector<base::string16> /* values */, 315 std::vector<base::string16> /* values */,
321 std::vector<base::string16> /* labels */) 316 std::vector<base::string16> /* labels */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698