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

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

Issue 2712513004: Use a qualified path for grit-generated headers in components/ (Closed)
Patch Set: more checkdeps Created 3 years, 10 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 #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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 #include "components/autofill/core/common/autofill_util.h" 58 #include "components/autofill/core/common/autofill_util.h"
59 #include "components/autofill/core/common/form_data.h" 59 #include "components/autofill/core/common/form_data.h"
60 #include "components/autofill/core/common/form_data_predictions.h" 60 #include "components/autofill/core/common/form_data_predictions.h"
61 #include "components/autofill/core/common/form_field_data.h" 61 #include "components/autofill/core/common/form_field_data.h"
62 #include "components/autofill/core/common/password_form_fill_data.h" 62 #include "components/autofill/core/common/password_form_fill_data.h"
63 #include "components/pref_registry/pref_registry_syncable.h" 63 #include "components/pref_registry/pref_registry_syncable.h"
64 #include "components/prefs/pref_service.h" 64 #include "components/prefs/pref_service.h"
65 #include "components/rappor/public/rappor_utils.h" 65 #include "components/rappor/public/rappor_utils.h"
66 #include "components/rappor/rappor_service_impl.h" 66 #include "components/rappor/rappor_service_impl.h"
67 #include "components/security_state/core/security_state.h" 67 #include "components/security_state/core/security_state.h"
68 #include "components/strings/grit/components_strings.h"
68 #include "google_apis/gaia/identity_provider.h" 69 #include "google_apis/gaia/identity_provider.h"
69 #include "grit/components_strings.h"
70 #include "ui/base/l10n/l10n_util.h" 70 #include "ui/base/l10n/l10n_util.h"
71 #include "ui/gfx/geometry/rect.h" 71 #include "ui/gfx/geometry/rect.h"
72 #include "url/gurl.h" 72 #include "url/gurl.h"
73 73
74 #if defined(OS_IOS) 74 #if defined(OS_IOS)
75 #include "components/autofill/core/browser/keyboard_accessory_metrics_logger.h" 75 #include "components/autofill/core/browser/keyboard_accessory_metrics_logger.h"
76 #endif 76 #endif
77 77
78 namespace autofill { 78 namespace autofill {
79 79
(...skipping 2111 matching lines...) Expand 10 before | Expand all | Expand 10 after
2191 if (i > 0) 2191 if (i > 0)
2192 fputs("Next oldest form:\n", file); 2192 fputs("Next oldest form:\n", file);
2193 } 2193 }
2194 fputs("\n", file); 2194 fputs("\n", file);
2195 2195
2196 fclose(file); 2196 fclose(file);
2197 } 2197 }
2198 #endif // ENABLE_FORM_DEBUG_DUMP 2198 #endif // ENABLE_FORM_DEBUG_DUMP
2199 2199
2200 } // namespace autofill 2200 } // namespace autofill
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698