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

Side by Side Diff: components/autofill/core/browser/BUILD.gn

Issue 1396923003: Autofill: Replace "save credit card" infobar with a bubble (Views only). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change object lifecycles + add interface classes. Created 5 years, 2 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 6
7 # This config sets the define that controls which Wallet service to contact 7 # This config sets the define that controls which Wallet service to contact
8 # for features using Wallet integration. Unofficial builds won't have the 8 # for features using Wallet integration. Unofficial builds won't have the
9 # proper API keys so it uses the "sandbox" test servers instead. 9 # proper API keys so it uses the "sandbox" test servers instead.
10 config("wallet_service") { 10 config("wallet_service") {
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "server_field_types_util.cc", 101 "server_field_types_util.cc",
102 "server_field_types_util.h", 102 "server_field_types_util.h",
103 "state_names.cc", 103 "state_names.cc",
104 "state_names.h", 104 "state_names.h",
105 "suggestion.cc", 105 "suggestion.cc",
106 "suggestion.h", 106 "suggestion.h",
107 "ui/card_unmask_prompt_controller.h", 107 "ui/card_unmask_prompt_controller.h",
108 "ui/card_unmask_prompt_controller_impl.cc", 108 "ui/card_unmask_prompt_controller_impl.cc",
109 "ui/card_unmask_prompt_controller_impl.h", 109 "ui/card_unmask_prompt_controller_impl.h",
110 "ui/card_unmask_prompt_view.h", 110 "ui/card_unmask_prompt_view.h",
111 "ui/save_card_bubble_impl.h",
112 "ui/save_card_bubble_view.h",
111 "validation.cc", 113 "validation.cc",
112 "validation.h", 114 "validation.h",
113 "wallet/real_pan_wallet_client.cc", 115 "wallet/real_pan_wallet_client.cc",
114 "wallet/real_pan_wallet_client.h", 116 "wallet/real_pan_wallet_client.h",
115 "webdata/autocomplete_syncable_service.cc", 117 "webdata/autocomplete_syncable_service.cc",
116 "webdata/autocomplete_syncable_service.h", 118 "webdata/autocomplete_syncable_service.h",
117 "webdata/autofill_change.cc", 119 "webdata/autofill_change.cc",
118 "webdata/autofill_change.h", 120 "webdata/autofill_change.h",
119 "webdata/autofill_entry.cc", 121 "webdata/autofill_entry.cc",
120 "webdata/autofill_entry.h", 122 "webdata/autofill_entry.h",
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 "//sync:test_support_sync_api", 289 "//sync:test_support_sync_api",
288 "//testing/gmock", 290 "//testing/gmock",
289 "//testing/gtest", 291 "//testing/gtest",
290 "//third_party/libaddressinput:util", 292 "//third_party/libaddressinput:util",
291 "//third_party/libphonenumber", 293 "//third_party/libphonenumber",
292 "//third_party/libjingle", 294 "//third_party/libjingle",
293 "//ui/base", 295 "//ui/base",
294 "//url", 296 "//url",
295 ] 297 ]
296 } 298 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698