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 5e793bbb7603fde08a5ed8dea208066477660efa..84912b733d4d1d72a4d0e7d30bffa3e285921ebd 100644 |
--- a/content/browser/appcache/view_appcache_internals_job.cc |
+++ b/content/browser/appcache/view_appcache_internals_job.cc |
@@ -13,7 +13,6 @@ |
#include "base/i18n/time_formatting.h" |
#include "base/logging.h" |
#include "base/memory/weak_ptr.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,10 +357,6 @@ class MainPageJob : public BaseInternalsJob { |
std::string* charset, |
std::string* out, |
const net::CompletionCallback& callback) const override { |
- // 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"); |
charset->assign("UTF-8"); |
@@ -483,10 +478,6 @@ class ViewAppCacheJob : public BaseInternalsJob, |
std::string* charset, |
std::string* out, |
const net::CompletionCallback& callback) const override { |
- // 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"); |
charset->assign("UTF-8"); |
out->clear(); |
@@ -562,10 +553,6 @@ class ViewEntryJob : public BaseInternalsJob, |
std::string* charset, |
std::string* out, |
const net::CompletionCallback& callback) const override { |
- // 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"); |
charset->assign("UTF-8"); |
out->clear(); |