| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/browser/ui/toolbar/back_forward_menu_model.h" | 5 #include "chrome/browser/ui/toolbar/back_forward_menu_model.h" |
| 6 | 6 |
| 7 #include "base/macros.h" | 7 #include "base/macros.h" |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "base/strings/string_util.h" | 9 #include "base/strings/string_util.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 EXPECT_EQ(ASCIIToUTF16("A && B"), back_model->GetLabelAt(2)); | 493 EXPECT_EQ(ASCIIToUTF16("A && B"), back_model->GetLabelAt(2)); |
| 494 EXPECT_EQ(ASCIIToUTF16("A &&&& B"), back_model->GetLabelAt(1)); | 494 EXPECT_EQ(ASCIIToUTF16("A &&&& B"), back_model->GetLabelAt(1)); |
| 495 EXPECT_EQ(ASCIIToUTF16("A &&&&&& B"), back_model->GetLabelAt(0)); | 495 EXPECT_EQ(ASCIIToUTF16("A &&&&&& B"), back_model->GetLabelAt(0)); |
| 496 #endif // defined(OS_MACOSX) | 496 #endif // defined(OS_MACOSX) |
| 497 } | 497 } |
| 498 | 498 |
| 499 // Test asynchronous loading of favicon from history service. | 499 // Test asynchronous loading of favicon from history service. |
| 500 TEST_F(BackFwdMenuModelTest, FaviconLoadTest) { | 500 TEST_F(BackFwdMenuModelTest, FaviconLoadTest) { |
| 501 ASSERT_TRUE(profile()->CreateHistoryService(true, false)); | 501 ASSERT_TRUE(profile()->CreateHistoryService(true, false)); |
| 502 profile()->CreateFaviconService(); | 502 profile()->CreateFaviconService(); |
| 503 Browser::CreateParams native_params(profile(), chrome::GetActiveDesktop()); | 503 Browser::CreateParams native_params(profile()); |
| 504 scoped_ptr<Browser> browser( | 504 scoped_ptr<Browser> browser( |
| 505 chrome::CreateBrowserWithTestWindowForParams(&native_params)); | 505 chrome::CreateBrowserWithTestWindowForParams(&native_params)); |
| 506 FaviconDelegate favicon_delegate; | 506 FaviconDelegate favicon_delegate; |
| 507 | 507 |
| 508 BackForwardMenuModel back_model( | 508 BackForwardMenuModel back_model( |
| 509 browser.get(), BackForwardMenuModel::BACKWARD_MENU); | 509 browser.get(), BackForwardMenuModel::BACKWARD_MENU); |
| 510 back_model.set_test_web_contents(controller().GetWebContents()); | 510 back_model.set_test_web_contents(controller().GetWebContents()); |
| 511 back_model.SetMenuModelDelegate(&favicon_delegate); | 511 back_model.SetMenuModelDelegate(&favicon_delegate); |
| 512 | 512 |
| 513 SkBitmap new_icon_bitmap(CreateBitmap(SK_ColorRED)); | 513 SkBitmap new_icon_bitmap(CreateBitmap(SK_ColorRED)); |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 559 // Verify we did get the expected favicon. | 559 // Verify we did get the expected favicon. |
| 560 EXPECT_EQ(0, memcmp(new_icon_bitmap.getPixels(), | 560 EXPECT_EQ(0, memcmp(new_icon_bitmap.getPixels(), |
| 561 valid_icon_bitmap.getPixels(), | 561 valid_icon_bitmap.getPixels(), |
| 562 new_icon_bitmap.getSize())); | 562 new_icon_bitmap.getSize())); |
| 563 | 563 |
| 564 // Make sure the browser deconstructor doesn't have problems. | 564 // Make sure the browser deconstructor doesn't have problems. |
| 565 browser->tab_strip_model()->CloseAllTabs(); | 565 browser->tab_strip_model()->CloseAllTabs(); |
| 566 // This is required to prevent the message loop from hanging. | 566 // This is required to prevent the message loop from hanging. |
| 567 profile()->DestroyHistoryService(); | 567 profile()->DestroyHistoryService(); |
| 568 } | 568 } |
| OLD | NEW |