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

Unified Diff: components/autofill/browser/android/test_auxiliary_profile_loader_android.cc

Issue 17392006: In components/autofill, move browser/ to core/browser/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to fix conflicts 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 side-by-side diff with in-line comments
Download patch
Index: components/autofill/browser/android/test_auxiliary_profile_loader_android.cc
diff --git a/components/autofill/browser/android/test_auxiliary_profile_loader_android.cc b/components/autofill/browser/android/test_auxiliary_profile_loader_android.cc
deleted file mode 100644
index 8e9b67aa0d8e72a588bbb1bf80b5d3c1410f3f01..0000000000000000000000000000000000000000
--- a/components/autofill/browser/android/test_auxiliary_profile_loader_android.cc
+++ /dev/null
@@ -1,132 +0,0 @@
-// Copyright 2013 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "components/autofill/browser/android/test_auxiliary_profile_loader_android.h"
-
-namespace autofill {
-
-TestAuxiliaryProfileLoader::TestAuxiliaryProfileLoader() {
-}
-
-TestAuxiliaryProfileLoader::~TestAuxiliaryProfileLoader() {
-}
-
-bool TestAuxiliaryProfileLoader::GetHasPermissions() const {
- return true;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetFirstName() const {
- return first_name_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetMiddleName() const {
- return middle_name_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetLastName() const {
- return last_name_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetSuffix() const {
- return suffix_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetStreet() const {
- return street_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetPostOfficeBox() const {
- return post_office_box_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetCity() const {
- return city_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetNeighborhood() const {
- return neighborhood_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetRegion() const {
- return region_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetPostalCode() const {
- return postal_code_;
-}
-
-base::string16 TestAuxiliaryProfileLoader::GetCountry() const {
- return country_;
-}
-
-void TestAuxiliaryProfileLoader::GetEmailAddresses(
- std::vector<base::string16>* email_addresses) const {
- *email_addresses = email_addresses_;
-}
-
-void TestAuxiliaryProfileLoader::GetPhoneNumbers(
- std::vector<base::string16>* phone_numbers) const {
- *phone_numbers = phone_numbers_;
-}
-
-void TestAuxiliaryProfileLoader::SetFirstName(
- const base::string16& first_name) {
- first_name_ = first_name;
-}
-
-void TestAuxiliaryProfileLoader::SetMiddleName(
- const base::string16& middle_name) {
- middle_name_ = middle_name;
-}
-
-void TestAuxiliaryProfileLoader::SetLastName(const base::string16& last_name) {
- last_name_ = last_name;
-}
-
-void TestAuxiliaryProfileLoader::SetSuffix(const base::string16& suffix) {
- suffix_ = suffix;
-}
-
-void TestAuxiliaryProfileLoader::SetStreet(const base::string16& street) {
- street_ = street;
-}
-
-void TestAuxiliaryProfileLoader::SetPostOfficeBox(
- const base::string16& post_office_box) {
- post_office_box_ = post_office_box;
-}
-
-void TestAuxiliaryProfileLoader::SetNeighborhood(
- const base::string16& neighborhood) {
- neighborhood_ = neighborhood;
-}
-
-void TestAuxiliaryProfileLoader::SetRegion(const base::string16& region) {
- region_ = region;
-}
-
-void TestAuxiliaryProfileLoader::SetCity(const base::string16& city) {
- city_ = city;
-}
-
-void TestAuxiliaryProfileLoader::SetPostalCode(
- const base::string16& postal_code) {
- postal_code_ = postal_code;
-}
-
-void TestAuxiliaryProfileLoader::SetCountry(const base::string16& country) {
- country_ = country;
-}
-
-void TestAuxiliaryProfileLoader::SetEmailAddresses(
- const std::vector<base::string16>& addresses) {
- email_addresses_ = addresses;
-}
-
-void TestAuxiliaryProfileLoader::SetPhoneNumbers(
- const std::vector<base::string16>& phone_numbers) {
- phone_numbers_ = phone_numbers;
-}
-
-} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698