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

Side by Side Diff: base/tracked_objects.cc

Issue 9702015: [UMA] Add performance profile data to UMA uploads. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix BASE_EXPORT usage Created 8 years, 8 months 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/profiler/alternate_timer.cc ('k') | chrome/browser/metrics/metrics_log.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/tracked_objects.h" 5 #include "base/tracked_objects.h"
6 6
7 #include <math.h> 7 #include <math.h>
8 #include <stdlib.h> 8 #include <stdlib.h>
9 9
10 #include "base/format_macros.h" 10 #include "base/format_macros.h"
(...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 base::AutoLock lock(map_lock_); 641 base::AutoLock lock(map_lock_);
642 for (DeathMap::iterator it = death_map_.begin(); 642 for (DeathMap::iterator it = death_map_.begin();
643 it != death_map_.end(); ++it) 643 it != death_map_.end(); ++it)
644 it->second.Clear(); 644 it->second.Clear();
645 for (BirthMap::iterator it = birth_map_.begin(); 645 for (BirthMap::iterator it = birth_map_.begin();
646 it != birth_map_.end(); ++it) 646 it != birth_map_.end(); ++it)
647 it->second->Clear(); 647 it->second->Clear();
648 } 648 }
649 649
650 static void OptionallyInitializeAlternateTimer() { 650 static void OptionallyInitializeAlternateTimer() {
651 char* alternate_selector = getenv(kAlternateProfilerTime); 651 NowFunction* alternate_time_source = GetAlternateTimeSource();
652 if (!alternate_selector) 652 if (alternate_time_source)
653 return; 653 ThreadData::SetAlternateTimeSource(alternate_time_source);
654 switch (*alternate_selector) {
655 case '0': // This is the default value, and uses the wall clock time.
656 break;
657 case '1': {
658 // Use the TCMalloc allocations-on-thread as a pseudo-time.
659 ThreadData::SetAlternateTimeSource(GetAlternateTimeSource());
660 break;
661 }
662 default:
663 NOTREACHED();
664 break;
665 }
666 } 654 }
667 655
668 bool ThreadData::Initialize() { 656 bool ThreadData::Initialize() {
669 if (!kTrackAllTaskObjects) 657 if (!kTrackAllTaskObjects)
670 return false; // Not compiled in. 658 return false; // Not compiled in.
671 if (status_ >= DEACTIVATED) 659 if (status_ >= DEACTIVATED)
672 return true; // Someone else did the initialization. 660 return true; // Someone else did the initialization.
673 // Due to racy lazy initialization in tests, we'll need to recheck status_ 661 // Due to racy lazy initialization in tests, we'll need to recheck status_
674 // after we acquire the lock. 662 // after we acquire the lock.
675 663
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 // ProcessDataSnapshot 856 // ProcessDataSnapshot
869 857
870 ProcessDataSnapshot::ProcessDataSnapshot() 858 ProcessDataSnapshot::ProcessDataSnapshot()
871 : process_id(base::GetCurrentProcId()) { 859 : process_id(base::GetCurrentProcId()) {
872 } 860 }
873 861
874 ProcessDataSnapshot::~ProcessDataSnapshot() { 862 ProcessDataSnapshot::~ProcessDataSnapshot() {
875 } 863 }
876 864
877 } // namespace tracked_objects 865 } // namespace tracked_objects
OLDNEW
« no previous file with comments | « base/profiler/alternate_timer.cc ('k') | chrome/browser/metrics/metrics_log.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698