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

Side by Side Diff: components/autofill/core/browser/autofill_manager.h

Issue 17481004: Update remaining Blink header includes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update CL due to file moves Created 7 years, 6 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 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_
7 7
8 #include <list> 8 #include <list>
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 12 matching lines...) Expand all
23 #include "components/autofill/core/browser/autocomplete_history_manager.h" 23 #include "components/autofill/core/browser/autocomplete_history_manager.h"
24 #include "components/autofill/core/browser/autofill_download.h" 24 #include "components/autofill/core/browser/autofill_download.h"
25 #include "components/autofill/core/browser/autofill_manager_delegate.h" 25 #include "components/autofill/core/browser/autofill_manager_delegate.h"
26 #include "components/autofill/core/browser/field_types.h" 26 #include "components/autofill/core/browser/field_types.h"
27 #include "components/autofill/core/browser/form_structure.h" 27 #include "components/autofill/core/browser/form_structure.h"
28 #include "components/autofill/core/browser/personal_data_manager.h" 28 #include "components/autofill/core/browser/personal_data_manager.h"
29 #include "components/autofill/core/common/autocheckout_status.h" 29 #include "components/autofill/core/common/autocheckout_status.h"
30 #include "components/autofill/core/common/form_data.h" 30 #include "components/autofill/core/common/form_data.h"
31 #include "components/autofill/core/common/forms_seen_state.h" 31 #include "components/autofill/core/common/forms_seen_state.h"
32 #include "content/public/common/ssl_status.h" 32 #include "content/public/common/ssl_status.h"
33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" 33 #include "third_party/WebKit/public/web/WebFormElement.h"
34 34
35 class GURL; 35 class GURL;
36 36
37 namespace content { 37 namespace content {
38 class RenderViewHost; 38 class RenderViewHost;
39 class WebContents; 39 class WebContents;
40 struct FrameNavigateParams; 40 struct FrameNavigateParams;
41 struct LoadCommittedDetails; 41 struct LoadCommittedDetails;
42 } 42 }
43 43
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, 421 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest,
422 UserHappinessFormLoadAndSubmission); 422 UserHappinessFormLoadAndSubmission);
423 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction); 423 FRIEND_TEST_ALL_PREFIXES(AutofillMetricsTest, UserHappinessFormInteraction);
424 424
425 DISALLOW_COPY_AND_ASSIGN(AutofillManager); 425 DISALLOW_COPY_AND_ASSIGN(AutofillManager);
426 }; 426 };
427 427
428 } // namespace autofill 428 } // namespace autofill
429 429
430 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_ 430 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_MANAGER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698