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

Side by Side Diff: chrome/browser/ui/ash/launcher/launcher_favicon_loader_browsertest.cc

Issue 10828223: launcher: Forgot to copy some test files, copy them now. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/ash/launcher/browser_launcher_item_controller_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <vector> 5 #include <vector>
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 #include "base/time.h" 8 #include "base/time.h"
9 #include "chrome/browser/ui/browser.h" 9 #include "chrome/browser/ui/browser.h"
10 #include "chrome/browser/ui/browser_tabstrip.h" 10 #include "chrome/browser/ui/browser_tabstrip.h"
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 NavigateTo(panel_browser, "launcher-smallfavicon.html"); 189 NavigateTo(panel_browser, "launcher-smallfavicon.html");
190 EXPECT_TRUE(WaitForFaviconDownlads(1)); 190 EXPECT_TRUE(WaitForFaviconDownlads(1));
191 EXPECT_TRUE(favicon_loader->GetFavicon().empty()); 191 EXPECT_TRUE(favicon_loader->GetFavicon().empty());
192 ASSERT_NO_FATAL_FAILURE(ResetDownloads()); 192 ASSERT_NO_FATAL_FAILURE(ResetDownloads());
193 193
194 NavigateTo(panel_browser, "launcher-largefavicon.html"); 194 NavigateTo(panel_browser, "launcher-largefavicon.html");
195 EXPECT_TRUE(WaitForFaviconDownlads(1)); 195 EXPECT_TRUE(WaitForFaviconDownlads(1));
196 EXPECT_FALSE(favicon_loader->GetFavicon().empty()); 196 EXPECT_FALSE(favicon_loader->GetFavicon().empty());
197 EXPECT_EQ(128, favicon_loader->GetFavicon().height()); 197 EXPECT_EQ(128, favicon_loader->GetFavicon().height());
198 } 198 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/launcher/browser_launcher_item_controller_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698