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

Side by Side Diff: chrome/browser/favicon/content_favicon_driver_browsertest.cc

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/favicon/content/content_favicon_driver.h" 5 #include "components/favicon/content/content_favicon_driver.h"
6 6
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/macros.h"
8 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
9 #include "base/run_loop.h" 10 #include "base/run_loop.h"
10 #include "base/scoped_observer.h" 11 #include "base/scoped_observer.h"
11 #include "base/single_thread_task_runner.h" 12 #include "base/single_thread_task_runner.h"
12 #include "base/thread_task_runner_handle.h" 13 #include "base/thread_task_runner_handle.h"
13 #include "chrome/app/chrome_command_ids.h" 14 #include "chrome/app/chrome_command_ids.h"
14 #include "chrome/browser/chrome_notification_types.h" 15 #include "chrome/browser/chrome_notification_types.h"
15 #include "chrome/browser/ui/browser.h" 16 #include "chrome/browser/ui/browser.h"
16 #include "chrome/browser/ui/browser_commands.h" 17 #include "chrome/browser/ui/browser_commands.h"
17 #include "chrome/browser/ui/tabs/tab_strip_model.h" 18 #include "chrome/browser/ui/tabs/tab_strip_model.h"
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 240
240 // A reload ignoring the cache should refetch the favicon from the website. 241 // A reload ignoring the cache should refetch the favicon from the website.
241 { 242 {
242 PendingTaskWaiter waiter(web_contents(), this); 243 PendingTaskWaiter waiter(web_contents(), this);
243 chrome::ExecuteCommand(browser(), IDC_RELOAD_IGNORING_CACHE); 244 chrome::ExecuteCommand(browser(), IDC_RELOAD_IGNORING_CACHE);
244 waiter.Wait(); 245 waiter.Wait();
245 } 246 }
246 ASSERT_TRUE(delegate->was_requested()); 247 ASSERT_TRUE(delegate->was_requested());
247 EXPECT_TRUE(delegate->bypassed_cache()); 248 EXPECT_TRUE(delegate->bypassed_cache());
248 } 249 }
OLDNEW
« no previous file with comments | « chrome/browser/favicon/chrome_fallback_icon_client.cc ('k') | chrome/browser/favicon/fallback_icon_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698