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

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

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Fix an Android compile error Created 4 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 #include "components/autofill/core/browser/autofill_manager.h" 5 #include "components/autofill/core/browser/autofill_manager.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 #include "components/autofill/core/common/autofill_constants.h" 53 #include "components/autofill/core/common/autofill_constants.h"
54 #include "components/autofill/core/common/autofill_data_validation.h" 54 #include "components/autofill/core/common/autofill_data_validation.h"
55 #include "components/autofill/core/common/autofill_pref_names.h" 55 #include "components/autofill/core/common/autofill_pref_names.h"
56 #include "components/autofill/core/common/autofill_util.h" 56 #include "components/autofill/core/common/autofill_util.h"
57 #include "components/autofill/core/common/form_data.h" 57 #include "components/autofill/core/common/form_data.h"
58 #include "components/autofill/core/common/form_data_predictions.h" 58 #include "components/autofill/core/common/form_data_predictions.h"
59 #include "components/autofill/core/common/form_field_data.h" 59 #include "components/autofill/core/common/form_field_data.h"
60 #include "components/autofill/core/common/password_form_fill_data.h" 60 #include "components/autofill/core/common/password_form_fill_data.h"
61 #include "components/pref_registry/pref_registry_syncable.h" 61 #include "components/pref_registry/pref_registry_syncable.h"
62 #include "components/prefs/pref_service.h" 62 #include "components/prefs/pref_service.h"
63 #include "components/rappor/rappor_utils.h" 63 #include "components/rappor/public/rappor_utils.h"
64 #include "components/rappor/rappor_service.h"
64 #include "google_apis/gaia/identity_provider.h" 65 #include "google_apis/gaia/identity_provider.h"
65 #include "grit/components_strings.h" 66 #include "grit/components_strings.h"
66 #include "ui/base/l10n/l10n_util.h" 67 #include "ui/base/l10n/l10n_util.h"
67 #include "ui/gfx/geometry/rect.h" 68 #include "ui/gfx/geometry/rect.h"
68 #include "url/gurl.h" 69 #include "url/gurl.h"
69 70
70 #if defined(OS_IOS) 71 #if defined(OS_IOS)
71 #include "components/autofill/core/browser/keyboard_accessory_metrics_logger.h" 72 #include "components/autofill/core/browser/keyboard_accessory_metrics_logger.h"
72 #endif 73 #endif
73 74
(...skipping 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after
2104 if (i > 0) 2105 if (i > 0)
2105 fputs("Next oldest form:\n", file); 2106 fputs("Next oldest form:\n", file);
2106 } 2107 }
2107 fputs("\n", file); 2108 fputs("\n", file);
2108 2109
2109 fclose(file); 2110 fclose(file);
2110 } 2111 }
2111 #endif // ENABLE_FORM_DEBUG_DUMP 2112 #endif // ENABLE_FORM_DEBUG_DUMP
2112 2113
2113 } // namespace autofill 2114 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698