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

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

Issue 108283005: Moved ipc-specific files from autofill/core to autofill/content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: "Final" fix. Created 7 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 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 8
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "components/autofill/core/common/autofill_param_traits_macros.h" 10 #include "components/autofill/content/common/autofill_param_traits_macros.h"
11 #include "components/autofill/core/common/form_data.h" 11 #include "components/autofill/core/common/form_data.h"
12 #include "components/autofill/core/common/form_data_predictions.h" 12 #include "components/autofill/core/common/form_data_predictions.h"
13 #include "components/autofill/core/common/form_field_data.h" 13 #include "components/autofill/core/common/form_field_data.h"
14 #include "components/autofill/core/common/form_field_data_predictions.h" 14 #include "components/autofill/core/common/form_field_data_predictions.h"
15 #include "components/autofill/core/common/forms_seen_state.h" 15 #include "components/autofill/core/common/forms_seen_state.h"
16 #include "components/autofill/core/common/password_form.h" 16 #include "components/autofill/core/common/password_form.h"
17 #include "components/autofill/core/common/password_form_fill_data.h" 17 #include "components/autofill/core/common/password_form_fill_data.h"
18 #include "components/autofill/core/common/web_element_descriptor.h" 18 #include "components/autofill/core/common/web_element_descriptor.h"
19 #include "content/public/common/common_param_traits.h" 19 #include "content/public/common/common_param_traits.h"
20 #include "content/public/common/common_param_traits_macros.h" 20 #include "content/public/common/common_param_traits_macros.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, 253 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions,
254 autofill::FormFieldData /* the form field */, 254 autofill::FormFieldData /* the form field */,
255 gfx::RectF /* input field bounds, window-relative */, 255 gfx::RectF /* input field bounds, window-relative */,
256 std::vector<base::string16> /* suggestions */, 256 std::vector<base::string16> /* suggestions */,
257 std::vector<base::string16> /* realms */) 257 std::vector<base::string16> /* realms */)
258 258
259 // Inform browser of data list values for the curent field. 259 // Inform browser of data list values for the curent field.
260 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 260 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
261 std::vector<base::string16> /* values */, 261 std::vector<base::string16> /* values */,
262 std::vector<base::string16> /* labels */) 262 std::vector<base::string16> /* labels */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698