| OLD | NEW | 
|    1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |    1 // Copyright (c) 2011 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 "base/memory/scoped_ptr.h" |    5 #include "base/memory/scoped_ptr.h" | 
|    6 #include "base/memory/scoped_vector.h" |    6 #include "base/memory/scoped_vector.h" | 
|    7 #include "base/utf_string_conversions.h" |    7 #include "base/utf_string_conversions.h" | 
|    8 #include "chrome/browser/autofill/autofill_field.h" |    8 #include "chrome/browser/autofill/autofill_field.h" | 
|    9 #include "chrome/browser/autofill/autofill_scanner.h" |    9 #include "chrome/browser/autofill/autofill_scanner.h" | 
|   10 #include "chrome/browser/autofill/credit_card_field.h" |   10 #include "chrome/browser/autofill/credit_card_field.h" | 
|   11 #include "chrome/common/form_field_data.h" |   11 #include "components/autofill/common/form_field_data.h" | 
|   12 #include "testing/gtest/include/gtest/gtest.h" |   12 #include "testing/gtest/include/gtest/gtest.h" | 
|   13  |   13  | 
|   14 class CreditCardFieldTest : public testing::Test { |   14 class CreditCardFieldTest : public testing::Test { | 
|   15  public: |   15  public: | 
|   16   CreditCardFieldTest() {} |   16   CreditCardFieldTest() {} | 
|   17  |   17  | 
|   18  protected: |   18  protected: | 
|   19   ScopedVector<const AutofillField> list_; |   19   ScopedVector<const AutofillField> list_; | 
|   20   scoped_ptr<CreditCardField> field_; |   20   scoped_ptr<CreditCardField> field_; | 
|   21   FieldTypeMap field_type_map_; |   21   FieldTypeMap field_type_map_; | 
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  309   list_.push_back(new AutofillField(field, ASCIIToUTF16("name1"))); |  309   list_.push_back(new AutofillField(field, ASCIIToUTF16("name1"))); | 
|  310  |  310  | 
|  311   AutofillScanner scanner(list_.get()); |  311   AutofillScanner scanner(list_.get()); | 
|  312   field_.reset(Parse(&scanner)); |  312   field_.reset(Parse(&scanner)); | 
|  313   ASSERT_NE(static_cast<CreditCardField*>(NULL), field_.get()); |  313   ASSERT_NE(static_cast<CreditCardField*>(NULL), field_.get()); | 
|  314   ASSERT_TRUE(field_->ClassifyField(&field_type_map_)); |  314   ASSERT_TRUE(field_->ClassifyField(&field_type_map_)); | 
|  315   ASSERT_TRUE( |  315   ASSERT_TRUE( | 
|  316       field_type_map_.find(ASCIIToUTF16("name1")) != field_type_map_.end()); |  316       field_type_map_.find(ASCIIToUTF16("name1")) != field_type_map_.end()); | 
|  317   EXPECT_EQ(CREDIT_CARD_NAME, field_type_map_[ASCIIToUTF16("name1")]); |  317   EXPECT_EQ(CREDIT_CARD_NAME, field_type_map_[ASCIIToUTF16("name1")]); | 
|  318 } |  318 } | 
| OLD | NEW |