| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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/file_util.h" | 5 #include "base/file_util.h" |
| 6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
| 7 #include "base/string_util.h" | 7 #include "base/string_util.h" |
| 8 #include "base/time.h" | 8 #include "base/time.h" |
| 9 #include "base/values.h" | 9 #include "base/values.h" |
| 10 #include "chrome/browser/template_url.h" | 10 #include "chrome/browser/search_engines/template_url.h" |
| 11 #include "chrome/browser/webdata/web_database.h" | 11 #include "chrome/browser/webdata/web_database.h" |
| 12 #include "chrome/common/chrome_paths.h" | 12 #include "chrome/common/chrome_paths.h" |
| 13 #include "chrome/common/stl_util-inl.h" | 13 #include "chrome/common/stl_util-inl.h" |
| 14 #include "skia/include/SkBitmap.h" | 14 #include "skia/include/SkBitmap.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 #include "webkit/glue/autofill_form.h" | 16 #include "webkit/glue/autofill_form.h" |
| 17 #include "webkit/glue/password_form.h" | 17 #include "webkit/glue/password_form.h" |
| 18 | 18 |
| 19 using base::Time; | 19 using base::Time; |
| 20 using base::TimeDelta; | 20 using base::TimeDelta; |
| (...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 645 ASSERT_EQ(32, images[1].width()); | 645 ASSERT_EQ(32, images[1].width()); |
| 646 ASSERT_EQ(32, images[1].height()); | 646 ASSERT_EQ(32, images[1].height()); |
| 647 } else { | 647 } else { |
| 648 ASSERT_EQ(32, images[0].width()); | 648 ASSERT_EQ(32, images[0].width()); |
| 649 ASSERT_EQ(32, images[0].height()); | 649 ASSERT_EQ(32, images[0].height()); |
| 650 ASSERT_EQ(16, images[1].width()); | 650 ASSERT_EQ(16, images[1].width()); |
| 651 ASSERT_EQ(16, images[1].height()); | 651 ASSERT_EQ(16, images[1].height()); |
| 652 } | 652 } |
| 653 } | 653 } |
| 654 | 654 |
| OLD | NEW |