Index: content/browser/appcache/view_appcache_internals_job.cc |
diff --git a/content/browser/appcache/view_appcache_internals_job.cc b/content/browser/appcache/view_appcache_internals_job.cc |
index c904cb455dbbecaae3a6ebd922531b481fb217c2..5e793bbb7603fde08a5ed8dea208066477660efa 100644 |
--- a/content/browser/appcache/view_appcache_internals_job.cc |
+++ b/content/browser/appcache/view_appcache_internals_job.cc |
@@ -13,7 +13,7 @@ |
#include "base/i18n/time_formatting.h" |
#include "base/logging.h" |
#include "base/memory/weak_ptr.h" |
-#include "base/profiler/scoped_profile.h" |
+#include "base/profiler/scoped_tracker.h" |
#include "base/strings/string_number_conversions.h" |
#include "base/strings/string_util.h" |
#include "base/strings/stringprintf.h" |
@@ -358,8 +358,8 @@ class MainPageJob : public BaseInternalsJob { |
std::string* charset, |
std::string* out, |
const net::CompletionCallback& callback) const override { |
- // TODO(vadimt): Remove ScopedProfile below once crbug.com/422489 is fixed. |
- tracked_objects::ScopedProfile tracking_profile( |
+ // TODO(vadimt): Remove ScopedTracker below once crbug.com/422489 is fixed. |
+ tracked_objects::ScopedTracker tracking_profile( |
FROM_HERE_WITH_EXPLICIT_FUNCTION("422489 MainPageJob::GetData")); |
mime_type->assign("text/html"); |
@@ -483,8 +483,8 @@ class ViewAppCacheJob : public BaseInternalsJob, |
std::string* charset, |
std::string* out, |
const net::CompletionCallback& callback) const override { |
- // TODO(vadimt): Remove ScopedProfile below once crbug.com/422489 is fixed. |
- tracked_objects::ScopedProfile tracking_profile( |
+ // TODO(vadimt): Remove ScopedTracker below once crbug.com/422489 is fixed. |
+ tracked_objects::ScopedTracker tracking_profile( |
FROM_HERE_WITH_EXPLICIT_FUNCTION("422489 ViewAppCacheJob::GetData")); |
mime_type->assign("text/html"); |
@@ -562,8 +562,8 @@ class ViewEntryJob : public BaseInternalsJob, |
std::string* charset, |
std::string* out, |
const net::CompletionCallback& callback) const override { |
- // TODO(vadimt): Remove ScopedProfile below once crbug.com/422489 is fixed. |
- tracked_objects::ScopedProfile tracking_profile( |
+ // TODO(vadimt): Remove ScopedTracker below once crbug.com/422489 is fixed. |
+ tracked_objects::ScopedTracker tracking_profile( |
FROM_HERE_WITH_EXPLICIT_FUNCTION("422489 ViewEntryJob::GetData")); |
mime_type->assign("text/html"); |