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

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

Issue 18054007: Use a direct include of time headers in chrome_frame/, chromeos/, cloud_print/, components/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
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.h" 9 #include "base/time/time.h"
10 #include "components/autofill/core/common/autocheckout_status.h" 10 #include "components/autofill/core/common/autocheckout_status.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_fill_data.h" 16 #include "components/autofill/core/common/password_form_fill_data.h"
17 #include "components/autofill/core/common/web_element_descriptor.h" 17 #include "components/autofill/core/common/web_element_descriptor.h"
18 #include "content/public/common/common_param_traits.h" 18 #include "content/public/common/common_param_traits.h"
19 #include "content/public/common/common_param_traits_macros.h" 19 #include "content/public/common/common_param_traits_macros.h"
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 gfx::RectF /* input field bounds, window-relative */, 305 gfx::RectF /* input field bounds, window-relative */,
306 std::vector<base::string16> /* suggestions */, 306 std::vector<base::string16> /* suggestions */,
307 std::vector<base::string16> /* realms */) 307 std::vector<base::string16> /* realms */)
308 308
309 // Inform browser of data list values for the curent field. 309 // Inform browser of data list values for the curent field.
310 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, 310 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList,
311 std::vector<base::string16> /* values */, 311 std::vector<base::string16> /* values */,
312 std::vector<base::string16> /* labels */, 312 std::vector<base::string16> /* labels */,
313 std::vector<base::string16> /* icons */, 313 std::vector<base::string16> /* icons */,
314 std::vector<int> /* unique ids */) 314 std::vector<int> /* unique ids */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698