| Index: chrome/browser/intranet_redirect_detector.cc
|
| diff --git a/chrome/browser/intranet_redirect_detector.cc b/chrome/browser/intranet_redirect_detector.cc
|
| index 2628f86bab3e5e8735819d315b7d0874a01103b0..02c15736872072cb842048f88b5bd3a7150ea4fc 100644
|
| --- a/chrome/browser/intranet_redirect_detector.cc
|
| +++ b/chrome/browser/intranet_redirect_detector.cc
|
| @@ -8,6 +8,7 @@
|
| #include "base/command_line.h"
|
| #include "base/prefs/pref_registry_simple.h"
|
| #include "base/prefs/pref_service.h"
|
| +#include "base/profiler/scoped_profile.h"
|
| #include "base/rand_util.h"
|
| #include "base/stl_util.h"
|
| #include "base/strings/utf_string_conversions.h"
|
| @@ -94,6 +95,11 @@ void IntranetRedirectDetector::FinishSleep() {
|
|
|
| void IntranetRedirectDetector::OnURLFetchComplete(
|
| const net::URLFetcher* source) {
|
| + // TODO(vadimt): Remove ScopedProfile below once crbug.com/422577 is fixed.
|
| + tracked_objects::ScopedProfile tracking_profile(
|
| + FROM_HERE_WITH_EXPLICIT_FUNCTION(
|
| + "422577 IntranetRedirectDetector::OnURLFetchComplete"));
|
| +
|
| // Delete the fetcher on this function's exit.
|
| Fetchers::iterator fetcher = fetchers_.find(
|
| const_cast<net::URLFetcher*>(source));
|
|
|