summaryrefslogtreecommitdiffstats
path: root/chrome/service
diff options
context:
space:
mode:
authorpkasting <pkasting@chromium.org>2015-02-27 20:48:25 -0800
committerCommit bot <commit-bot@chromium.org>2015-02-28 04:49:17 +0000
commitcdf6fe7b23444014b70b5fa97d7cb5222d64a20a (patch)
tree6415cd6dc10895bb18d753d5d37eee133bc3e7df /chrome/service
parent6ccace4dafa0b74c6933d14caea548a2cbfd3244 (diff)
downloadchromium_src-cdf6fe7b23444014b70b5fa97d7cb5222d64a20a.zip
chromium_src-cdf6fe7b23444014b70b5fa97d7cb5222d64a20a.tar.gz
chromium_src-cdf6fe7b23444014b70b5fa97d7cb5222d64a20a.tar.bz2
Split bug 418183 into separate bugs for each janky piece and remove the
remaining instrumentation of non-janky functions. BUG=418183,462774,462778,462780,462784,462788,462789 TEST=none TBR=rvargas,jochen,rpaquay,zea Review URL: https://codereview.chromium.org/970463002 Cr-Commit-Position: refs/heads/master@{#318597}
Diffstat (limited to 'chrome/service')
-rw-r--r--chrome/service/cloud_print/print_system_win.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/chrome/service/cloud_print/print_system_win.cc b/chrome/service/cloud_print/print_system_win.cc
index b9aa994..30fb0b4 100644
--- a/chrome/service/cloud_print/print_system_win.cc
+++ b/chrome/service/cloud_print/print_system_win.cc
@@ -8,7 +8,6 @@
#include "base/files/file_util.h"
#include "base/json/json_writer.h"
#include "base/memory/scoped_ptr.h"
-#include "base/profiler/scoped_tracker.h"
#include "base/strings/utf_string_conversions.h"
#include "base/win/object_watcher.h"
#include "base/win/scoped_bstr.h"
@@ -89,11 +88,6 @@ class PrintSystemWatcherWin : public base::win::ObjectWatcher::Delegate {
// base::ObjectWatcher::Delegate method
virtual void OnObjectSignaled(HANDLE object) {
- // TODO(vadimt): Remove ScopedTracker below once crbug.com/418183 is fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION(
- "418183 PrintSystemWatcherWin::OnObjectSignaled"));
-
crash_keys::ScopedPrinterInfo crash_key(printer_info_);
DWORD change = 0;
FindNextPrinterChangeNotification(object, &change, NULL, NULL);
@@ -355,11 +349,6 @@ class JobSpoolerWin : public PrintSystem::JobSpooler {
// base::win::ObjectWatcher::Delegate implementation.
virtual void OnObjectSignaled(HANDLE object) override {
- // TODO(vadimt): Remove ScopedTracker below once crbug.com/418183 is
- // fixed.
- tracked_objects::ScopedTracker tracking_profile(
- FROM_HERE_WITH_EXPLICIT_FUNCTION("Core_OnObjectSignaled"));
-
DCHECK(xps_print_job_.get());
DCHECK(object == job_progress_event_.Get());
ResetEvent(job_progress_event_.Get());