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

Unified Diff: content/browser/appcache/view_appcache_internals_job.cc

Issue 747443002: Undoing instrumentations for task URLRequestSimpleJob::StartAsync (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing changes that conflict with another CL Created 6 years, 1 month 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: 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();
« no previous file with comments | « chrome/browser/extensions/chrome_url_request_util.cc ('k') | content/browser/histogram_internals_request_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698