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

Unified Diff: chrome/browser/safe_browsing/safe_browsing_navigation_observer_browsertest.cc

Issue 2713993003: Revert of build: Enable auto raw pointer deduction check on linux. (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/safe_browsing/safe_browsing_navigation_observer_browsertest.cc
diff --git a/chrome/browser/safe_browsing/safe_browsing_navigation_observer_browsertest.cc b/chrome/browser/safe_browsing/safe_browsing_navigation_observer_browsertest.cc
index 2e1fead87fc472b66a5086be396db64ef776a6fd..55590ddbd616329dbab453ce0d37c7d3b0ffb2c8 100644
--- a/chrome/browser/safe_browsing/safe_browsing_navigation_observer_browsertest.cc
+++ b/chrome/browser/safe_browsing/safe_browsing_navigation_observer_browsertest.cc
@@ -1911,7 +1911,7 @@
// Trigger download by user gesture.
TriggerDownloadViaHtml5FileApi(true /* has_user_gesture */);
std::string test_server_ip(embedded_test_server()->host_port_pair().host());
- auto* nav_list = navigation_event_list();
+ auto nav_list = navigation_event_list();
ASSERT_TRUE(nav_list);
ASSERT_EQ(1U, nav_list->Size());
VerifyNavigationEvent(GURL(), // source_url
@@ -1945,7 +1945,7 @@
// Trigger download without user gesture.
TriggerDownloadViaHtml5FileApi(false /* has_user_gesture */);
std::string test_server_ip(embedded_test_server()->host_port_pair().host());
- auto* nav_list = navigation_event_list();
+ auto nav_list = navigation_event_list();
ASSERT_TRUE(nav_list);
ASSERT_EQ(1U, nav_list->Size());
VerifyNavigationEvent(GURL(), // source_url

Powered by Google App Engine
This is Rietveld 408576698